Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
148891 | yiyang | 杨辉三角 | C++ | 通过 | 100 | 0 MS | 256 KB | 408 | 2024-05-25 15:09:37 |
#include<bits/stdc++.h> using namespace std; int a[20][20]; int main(){ int n; cin >> n; for(int i=1;i<=n;i++){ for(int j=1;j<=n;j++){ if(j==1 || i==j){ a[i][j]=1; } if(j!=1 && i!=j){ a[i][j]=a[i-1][j]+a[i-1][j-1]; } } } for(int i=1;i<=n;i++){ for(int j=1;j<=n;j++){ if(a[i][j]){ cout << a[i][j] << ' '; } } cout << endl; } return 0; }