码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 2032 杨辉三角

时间:2014-07-21 11:11:49      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   for   

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

题目大意:n表示杨辉三角的层数,注意:每一个杨辉三角后面加一个空行。

 1 #include <stdio.h>
 2 int main ()
 3 {
 4     int n,i,j,a[30][30];
 5     while (scanf("%d",&n)!=EOF)
 6     {
 7         for (i=0; i<n; i++)
 8             a[i][0]=a[i][i]=1;
 9         for (i=2; i<n; i++)
10         {
11             for (j=1; j<i; j++)
12             {
13                 a[i][j]=a[i-1][j]+a[i-1][j-1];
14             }
15         }
16         for (i=0; i<n; i++)
17         {
18             for (j=0; j<=i; j++)
19             {
20                 if(i==j)
21                     printf ("%d",a[i][j]);
22                 else printf("%d ",a[i][j]);
23             }
24             printf ("\n");
25         }
26         printf ("\n");
27     }
28 }

hdu 2032 杨辉三角,布布扣,bubuko.com

hdu 2032 杨辉三角

标签:style   blog   http   color   io   for   

原文地址:http://www.cnblogs.com/qq-star/p/3857707.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!