标签:++ 定义 namespace using main math ios str ==
#include <algorithm> #include <iostream> #include <cstring> #include <cstdio> #include <vector> #include <cmath> #include <queue> #include <deque> #include <cmath> #include <map> using namespace std; typedef long long ll; const double inf=1e20; const int maxn=100+10; const int mod=1e9+7; int n,m; int a[maxn][maxn]; int main(){ for(int i=0;i<55;i++){ for(int j=0;j<55;j++){ if(j==0||j==i)a[i][j]=1; else{ a[i][j]=a[i-1][j-1]+a[i-1][j]; } } } int n; while(scanf("%d",&n)!=EOF){ for(int i=0;i<n;i++){ for(int j=0;j<=i;j++){ if(j==0)printf("%d",a[i][j]); else printf(" %d",a[i][j]); } printf("\n"); } printf("\n"); } return 0; }
标签:++ 定义 namespace using main math ios str ==
原文地址:https://www.cnblogs.com/wz-archer/p/12444052.html