Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
63182 | 申明智 | 打印杨辉三角 | C++ | Accepted | 2 MS | 292 KB | 292 | 2024-01-06 14:04:19 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; long long a[50][50]; memset(a,0,sizeof(a)); a[0][0]=1; for(int i=1;i<=n;i++){ for (int j=1;j<=i;j++){ a[i][j]=a[i-1][j]+a[i-1][j-1]; cout<<a[i][j]<<" "; } cout<<endl; } return 0; }