Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
148767 古浩圳bylz 杨辉三角 C++ 通过 100 0 MS 248 KB 337 2024-05-25 14:44:20

Tests(2/2):


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


测评信息: