裴波那契数列
Posted TOTO2
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了裴波那契数列相关的知识,希望对你有一定的参考价值。
#include<iostream> using namespace std; int main() { int arr[30]={1,1,2,3,5,8,13}; for(int a=2;a<30;a++){ arr[a]=arr[a-1]+arr[a-2]; } for(int a=0;a<30;a++){ cout<<arr[a]<<endl; } return 0; }
以上是关于裴波那契数列的主要内容,如果未能解决你的问题,请参考以下文章