用C语言如何输出fibonacci数列
时间: 2024-04-29 22:20:44 浏览: 46
c 语言斐波那契数列输出
要输出 Fibonacci 数列,可以使用 C 语言的循环语句来实现,具体代码如下:
```c
#include <stdio.h>
int main() {
int n, i, t1 = 0, t2 = 1, nextTerm;
printf("请输入要输出的项数:");
scanf("%d", &n);
printf("Fibonacci 数列: ");
for (i = 1; i <= n; ++i) {
printf("%d, ", t1);
nextTerm = t1 + t2;
t1 = t2;
t2 = nextTerm;
}
return 0;
}
```
运行这段代码后,程序会要求你输入要输出的 Fibonacci 数列的项数,然后输出相应的数列。
阅读全文