Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
5898 | 季洁 | 打印杨辉三角 | C++ | 输出超限 | 0 | 0 MS | 244 KB | 374 | 2020-08-16 08:55:28 |
#include<bits/stdc++.h> using namespace std; int main(){ int a[19],b[19]; for(int i=0;i<=19;i++){ a[i]=0; b[i]=0; } a[10]=1; for(int i=0;i<=10-1;i++){ for(int j=1;j<=18;j++){ if(a[j]!=0) cout<<a[j]; else cout<<' '; b[j]=a[j-1]+a[j+1]; } if(i==9) cout<<1; cout<<endl; for(int j=0;j<=19;j++){ a[j]=b[j]; } } return 0; }