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

裴波那契数列

时间:2017-11-21 14:59:23      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:ace   using   logs   int   std   技术   images   pac   bsp   

#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;
}

技术分享图片

裴波那契数列

标签:ace   using   logs   int   std   技术   images   pac   bsp   

原文地址:http://www.cnblogs.com/aipopo/p/7872208.html

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