杨辉三角(hdu2032)——有待完善

Posted Strugglinggirl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了杨辉三角(hdu2032)——有待完善相关的知识,希望对你有一定的参考价值。

思考:杨辉三角形

#include<stdio.h>
#include<cstring>
int main()
{
    int  n;
    char d;
    int a[31][31] = {0};
    while (scanf_s("%d%c",&n,&d)!=EOF)
    {    
        a[0][1] = 1;    
        int i;
        for (i = 1; i <= n; i++)
        {
            for (int j = 1; j <= i; j++)
            {
                a[i][j] = a[i - 1][j - 1] + a[i - 1][j];
                printf("%d", a[i][j]);
                if (j < i)
                    printf(" ");
            }
            printf("\\n");
        }
        printf("\\n");
    }
}

 

以上是关于杨辉三角(hdu2032)——有待完善的主要内容,如果未能解决你的问题,请参考以下文章

HDU2032 杨辉三角入门

HDU2032 杨辉三角入门

hdu 2032 杨辉三角

HDU 2032 杨辉三角

HDU-2032解题报告

HDU_oj_2032 杨辉三角