首页 > 其他 > 详细

杨辉三角

时间:2017-06-07 22:50:43      阅读:298      评论:0      收藏:0      [点我收藏+]

输出一个数n(<=20),然后输入n阶杨辉三角。

1

1   1

1   2   1

1   3   3   1

1   4   6   4   1

#include <stdio.h>

int main()
{
    int i, j;
    int order;//阶数
    printf("请输入要输出的杨辉三角的阶数:");
    scanf("%d", &order);
    int a[order][order];
    for(i = 0; i<order; i++)
    {
        for(j = 0; j<i+1; j++)
        {
            if(j==0||j==i)
                a[i][j] = 1;
            else
                a[i][j] = a[i-1][j-1] + a[i-1][j];
        }
    }
    for(i = 0; i<order; i++)
    {
        for(j = 0; j<i+1; j++)
        {
            printf("%d ", a[i][j]);
        }
        printf("\n");
    }
    return 0;
}

 

杨辉三角

原文:http://www.cnblogs.com/Ridgway/p/6959400.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!