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

蓝桥第十届前三项和

时间:2019-11-21 20:16:28      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:include   using   pac   iostream   main   out   clu   std   ios   

#include<iostream>

using namespace std;
//3361
int a[30000000];
int main(){
int N = 30;
a[1] = a[2] = a[3] = 1;
for(int i = 4;i <= N;i++){
a[i] = (a[i - 1] +a[i - 2] + a[i - 3]);
cout << a[i - 1] << " " << a[i - 2] << " " << a[i - 3] << endl;
}

cout << a[N] << endl;
}

蓝桥第十届前三项和

标签:include   using   pac   iostream   main   out   clu   std   ios   

原文地址:https://www.cnblogs.com/luyuan-chen/p/11907818.html

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