#11705: Ans?


curtis123 (curtis)

學校 : 國立嘉義高級中學
編號 : 59072
來源 : [36.239.81.102]
最後登入時間 :
2020-05-14 20:50:36
b127. 會議中心(Room) -- 96學年度台北市資訊學科能力競賽 | From: [114.39.34.114] | 發表日期 : 2017-02-04 13:09

#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {

int n;
int a[46]={1,1}; //因為 n<=45 從 0~45 共 46 個

for(int i=2;i<46;i++)
a[i]=a[i-2]+a[i-1];

while(cin>>n)
cout<<a[n]<<endl;
return 0;
}

 

 
ZeroJudge Forum