客似云来

Posted jaydenouyang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了客似云来相关的知识,希望对你有一定的参考价值。

题目: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 }

 

以上是关于客似云来的主要内容,如果未能解决你的问题,请参考以下文章

每日一练_PAT_B_PRAC_1004客似云来

test20181018 B君的第三题

微信传播系列一:社会传播简述

腾讯云来了

企业要复工 阿里云来帮忙

云原生加速落地,金融行业应用上云来打样儿