HDU 2032 杨辉三角(格式是关键)

杨辉三角

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 53787    Accepted Submission(s): 22363


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
 

Author
lcy
 

Source
C语言程序设计练习(五)


   原题链接:http://acm.hdu.edu.cn/showproblem.php?pid=2032

水题,注意格式!!

AC代码:

#include<iostream>
using namespace std;
int main()
{
    int a[35][35]={0};
    for(int i=0;i<35;i++)
    {
        for(int j=0;j<=i;j++)
        {
            if(i==0||i==j)
                a[i][j]=1;
            else
                a[i][j]=a[i-1][j-1]+a[i-1][j];
        }
    }
    int n;
    while(cin>>n)
    {
        for(int i=0;i<n;i++)
        {
            for(int j=0;j<=i;j++)
            {
                if(j!=i)
                    cout<<a[i][j]<<" ";
                else
                    cout<<a[i][j];
            }
            cout<<endl;
        }
        cout<<endl;
    }
    return 0;
}


你可能感兴趣的:(杨辉三角,HDU2032)