标签:output 开始 href int 斐波那契数列 names ref The 斐波那契数
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2041
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 86599 Accepted Submission(s): 44398
1 #include <iostream> 2 #include <algorithm> 3 using namespace std; 4 int a[50]; 5 int n,x; 6 void init() 7 { 8 a[0]=0,a[1]=1,a[2]=1; 9 for(int i=3;i<50;i++){ 10 a[i]=a[i-1]+a[i-2]; 11 } 12 } 13 int main() 14 { 15 init(); 16 while(cin>>n){ 17 while(n--){ 18 cin>>x; 19 cout<<a[x]<<endl; 20 } 21 } 22 return 0; 23 }
标签:output 开始 href int 斐波那契数列 names ref The 斐波那契数
原文地址:https://www.cnblogs.com/shixinzei/p/10678619.html