题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2032
Problem Description
还记得中学时候学过的杨辉三角吗?具体的定义这里不再描述,你可以参考以下的图形:
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
Input
输入数据包含多个测试实例,每个测试实例的输入只包含一个正整数n(1<=n<=30),表示将要输出的杨辉三角的层数。
Output
对应于每一个输入,请输出相应层数的杨辉三角,每一层的整数之间用一个空格隔开,每一个杨辉三角后面加一个空行。
Sample Input
2 3
Sample Output
1
1 1
1
1 1
1 2 1
详细看代码:
#include<iostream>
#include<cstring>
#include<cmath>
#include<algorithm>
#define mem(a,b) memset(a,b,sizeof(a))
using namespace std;
int main() {int n;int a[35][35];mem(a,0);a[1][1]=1;a[2][1]=a[2][2]=1;for(int i=3; i<35; i++) {for(int j=1; j<35; j++) {a[i][j]=a[i-1][j]+a[i-1][j-1];}}while(scanf("%d",&n)!=EOF) {for(int i=1; i<=n; i++) {for(int j=1; j<=i; j++) {if(j==1) {printf("%d",a[i][j]);} else {printf(" %d",a[i][j]);}}printf("\n");}printf("\n");}return 0;
}