斐波那契凤尾

Posted jaydenouyang

tags:

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

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

重点是在25位后进行补0

 1 #include <iostream>
 2 #include <algorithm>
 3 #include <cstdio>
 4 using namespace std;
 5 const int maxn = 100000 + 1;
 6 #define MOD 1000000
 7 int f[maxn];
 8 
 9 void db(){
10     f[1] = 1;
11     f[2] = 2;
12     for (int i = 3; i < maxn; i++){
13         f[i] = f[i - 1] + f[i - 2];
14         f[i] %= MOD;
15     }
16 }
17 
18 int main(){
19     int n;
20     db();
21     while (~scanf("%d",&n)){
22         if (n < 25)
23             printf("%d\n", f[n]);
24         else
25         printf("%06d\n", f[n]);
26     }
27     //system("pause");
28     return 0;
29 }

 

以上是关于斐波那契凤尾的主要内容,如果未能解决你的问题,请参考以下文章

斐波那契数列 : 斐波那契凤尾

斐波那契数列 : 斐波那契凤尾

斐波那契数列 : 斐波那契凤尾

斐波那契凤尾

每日一题 | day32(斐波那契数列凤尾)

08《算法入门教程》递归算法之斐波那契数列