递归:
#include <stdio.h> int Input() { int N; scanf("%d", &N); return N; } int Fibonacci(int N) { for (int i = 0; i < N; i++) { if (N == 1 || N == 2) { return 1; } else return Fibonacci(N - 1) + Fibonacci(N - 2); } } void Output(int N) { for (int i = 1; i <= N; i++) { printf("%d ", Fibonacci(i)); } } int main() { int N = Input(); Fibonacci(N); Output(N); return 0; }
迭代:
#include <stdio.h> int Input() { int N; scanf("%d", &N); return N; } int Fibonacci(int N) { int result = 0, pre_result = 1, pre_pre_result = 1; if (N <= 2) { result = 1; } while (N > 2) { result = pre_result + pre_pre_result; pre_pre_result = pre_result; pre_result = result; N--; } return result; } void Output(int N) { for (int i = 1; i <= N; i++) { printf("%d ", Fibonacci(i)); } } int main() { int N = Input(); Fibonacci(N); Output(N); return 0; }
0.0分
0 人评分
程序员的表白 (C语言代码)浏览:1461 |
C语言训练-计算1~N之间所有奇数之和 (C语言代码)浏览:689 |
最小公倍数 (C语言代码)浏览:894 |
字符串比较 (C语言代码)答案错误????浏览:641 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:698 |
C语言程序设计教程(第三版)课后习题6.8 (C语言代码)浏览:798 |
C语言训练-阶乘和数* (C语言代码)-------- 呆板写法浏览:1396 |
wu-淘淘的名单 (C++代码)浏览:1532 |
C语言程序设计教程(第三版)课后习题6.8 (C++代码)浏览:614 |
校门外的树 (C语言代码)浏览:733 |