Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
63192 彭林江 打印杨辉三角 C++ Accepted 2 MS 276 KB 384 2024-01-06 14:13:52

Tests(15/15):


Code:

#include<bits/stdc++.h> using namespace std; int a[31][31]; int main(){ a[1][1] = 1; a[2][1] = 1, a[2][2] = 1; int n; cin >> n; for(int i = 3; i <= n; i++){ for(int j = 1; j <= 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 <= i; j++){ cout << a[i][j] << " "; } cout <<endl; } return 0; }