Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
50328 jiabokai 【例74.1】 倒杨辉三角 C++ 无测评数据 0 MS 0 KB 360 2024-08-19 18:29:52

Tests(0/0):


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