#12521: C++AC解


st990185@gmail.com (風神)

學校 : 臺北市立東湖國中
編號 : 67139
來源 : [220.136.196.36]
最後登入時間 :
2017-07-03 18:12:43
b127. 會議中心(Room) -- 96學年度台北市資訊學科能力競賽 | From: [124.11.192.89] | 發表日期 : 2017-08-06 11:46

#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