gpt4 book ai didi

检查 1 和 N 之间存在多少个斐波那契数

转载 作者:太空宇宙 更新时间:2023-11-04 06:57:28 26 4
gpt4 key购买 nike

<分区>

使用这个程序我可以很容易地得到斐波那契数列。

int main(){

int n,i,first=0,second=1,next=0,fib=0;

// 0 1 1 2 3 5 8 13 21 34

printf("Enter the value of N: ");
scanf("%d",&n);

for(i=1;i<=n;i++){


next = first+second;
first = second;
second = next;

printf("%d",next);


}

但是那里有很多斐波那契数。

例如,如果我输入 35,则结果应显示 10 个斐波那契数。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com