码迷,mamicode.com
首页 > 其他好文 > 详细

养兔子

时间:2017-12-30 16:59:51      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:color   post   for   style   pos   class   col   while   span   

题目:https://www.nowcoder.com/pat/2/problem/251

 1 #include <iostream>
 2 #include <algorithm>
 3 using namespace std;
 4 const int maxn = 92;
 5 long long f[maxn];
 6 void db(){
 7     f[1] = 1;
 8     f[2] = 2;
 9     for (int i = 3; i < maxn; i++){
10         f[i] = f[i - 1] + f[i - 2];
11     }
12 }
13 
14 int main(){
15     db();
16     int n;
17     while (cin >> n){
18         cout << f[n] << endl;
19     }
20     //system("pause");
21     return 0;
22 }

 

养兔子

标签:color   post   for   style   pos   class   col   while   span   

原文地址:https://www.cnblogs.com/jaydenouyang/p/8150150.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!