杨辉三角(c语言)

//杨辉三角
#include<stdio.h>

void main()
{
		int i=1,j;
		int yh[5];
		for(i=0;i<5;i++)
		{
			yh[i]=1;
			for(j=i-1;j>0;j--)
			{
				yh[j]=yh[j-1]+yh[j];
			}
		
		    for(j=0;j<=i;j++)
		    {
			    printf("%d \t",yh[j]);
		    }
		printf("\n");
		}
}

    原文作者:杨辉三角问题
    原文地址: https://blog.csdn.net/u011329762/article/details/24665813
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞