使用C++写一段生成斐波那契数列的代码
时间: 2023-02-22 22:32:38 浏览: 73
斐波那契数列的C++代码
5星 · 资源好评率100%
```C
#include <stdio.h>
int main()
{
int i, n, t1 = 0, t2 = 1, nextTerm;
printf("Enter the number of terms: ");
scanf("%d", &n);
printf("Fibonacci Series: ");
for (i = 1; i <= n; ++i)
{
printf("%d, ", t1);
nextTerm = t1 + t2;
t1 = t2;
t2 = nextTerm;
}
return 0;
}
```
上面是一段生成斐波那契数列的C代码,它使用了循环来生成数列中的每一项,并在每次循环中打印出当前项。用户可以在程序开头输入需要生成的斐波那契数列项数。
阅读全文