题解 1131: C语言训练-斐波纳契数列

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

两种方法 兔子

摘要:#include<stdio.h> int main(void) {     int a = 1, b = 1, c;     int i, n;     scanf("%d", &n); ……

简单简单简单的1131

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int n){ if(n==1||n==2) return 1; if(n>2) return f(n-1)+f(n-2);……

斐波那契数列

摘要:解题思路:用一个变量存储上一个数注意事项:无参考代码: #includde<stdio.h>  int main(){         int n;         int t;         in……

c++超级简单的递归来一起看看吧!

摘要:解题思路:注意事项:如果n ==1或者2时,那么结果显然都是1,如果是大于2的话结果就是n-1位加上n-2位的数字这样递归就形成了参考代码:#include<iostream>using namesp……

无聊的星期六

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int fun(int n){ return (n<=1)?n:(fun(n-1)+fun(n-2)); } int m……

用数组很简单

摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#pragma warning(disable:6031)#include<stdio.h>int main……