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

客似云来

时间:2018-01-01 19:32:29      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:long   color   https   class   post   body   ++   +=   include   

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

 1 #include <iostream>
 2 #include <algorithm>
 3 using namespace std;
 4 const int maxn = 80 + 1;
 5 long long f[maxn];
 6 
 7 void db(){
 8     f[1] = 1;
 9     f[2] = 1;
10     for (int i = 3; i < maxn; i++){
11         f[i] = f[i - 1] + f[i - 2];
12     }
13     
14 }
15 
16 int main(){
17     std::ios::sync_with_stdio(false);
18     int from, to;
19     db();
20     while (cin >> from >> to){
21         long long ans = 0;
22         for (int i = from; i <= to; i++){
23             ans += f[i];
24         }
25         cout << ans << endl;
26     }
27     //system("pause");
28     return 0;
29 }

 

客似云来

标签:long   color   https   class   post   body   ++   +=   include   

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

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