蓝桥第十届前三项和
Posted luyuan-chen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了蓝桥第十届前三项和相关的知识,希望对你有一定的参考价值。
#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;
}
以上是关于蓝桥第十届前三项和的主要内容,如果未能解决你的问题,请参考以下文章