Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
141425 Kevin 打印杨辉三角 C++ Accepted 1 MS 288 KB 375 2025-12-23 19:12:22

Tests(15/15):


Code:

#include<bits/stdc++.h> using namespace std; long long a[50][50]; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ for(int j=1;j<=i;j++){ if((j==1)||(i==j)){ a[i][j]=1; } else{ a[i][j]=a[i-1][j-1]+a[i-1][j]; } } } for(int i=1;i<=n;i++){ for(int j=1;j<=i;j++){ cout<<a[i][j]<<" "; } cout<<endl; } return 0; }