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

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

筛选

斐波那契数列(c++)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[1001];int main(){    int n;    cin>>……

斐波纳契数列

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[100];int main(){    int x;    cin>>……

斐波纳契数列(C++找规律)

摘要:解题思路:前两个数和等于第三个数注意事项:参考代码:#include<iostream> using namespace std; int main() {     int a[88]={1,……