斐波那契数列c语言代码
时间: 2023-09-05 19:12:55 浏览: 117
以下是斐波那契数列的C语言代码:
```c
#include <stdio.h>
int main()
{
int n, i, a = 0, b = 1, c;
printf("Enter the number of terms: ");
scanf("%d", &n);
printf("Fibonacci Series: ");
for(i = 1; i <= n; i++)
{
printf("%d, ", a);
c = a + b;
a = b;
b = c;
}
return 0;
}
```
该代码首先要求用户输入要生成的斐波那契数列的项数。然后,使用for循环计算并输出每个斐波那契数列项。在每次迭代中,使用变量a和b来计算下一个项,然后更新它们的值以便在下一次迭代中使用。最后,返回0以表示程序的正常结束。
相关问题
利用递归数组求斐波那契数列c语言代码
我不是一个程序,但是我可以为你提供一些参考:int fibonacci(int n)
{
/* Declare an array to store Fibonacci numbers. */
int f[n+2]; // 1 extra to handle case, n = 0
int i;
/* 0th and 1st number of the series are 0 and 1*/
f[0] = 0;
f[1] = 1;
for (i = 2; i <= n; i++)
{
/* Add the previous 2 numbers in the series
and store it */
f[i] = f[i-1] + f[i-2];
}
return f[n];
}
斐波那契数列c语言c代码
以下是输出斐波那契数列的第n项的C语言代码:
```c
#include <stdio.h>
int Fibon(int n) //递归函数
{
if (n == 1 || n == 2)
return 1;
else
return Fibon(n-1) + Fibon(n-2);
}
int main()
{
int n, res = 0;
scanf("%d", &n);
res = Fibon(n);
printf("第%d项斐波那契数列的值为:%d\n", n, res);
return 0;
}
```
该代码使用递归函数实现斐波那契数列的计算,通过输入n来计算斐波那契数列的第n项,并输出结果。
阅读全文