1. 程式人生 > >楊輝三角

楊輝三角

sca 楊輝三角 () scan n) pri clu can tdi

#include<stdio.h>
main()
{
int n,i,j;
int s[10][10];
printf("請輸入楊輝三角的行數n:");
scanf("%d",&n);
for(i=0;i<n;i++)
for(j=0;j<=i;j++)
if(j==0||i==j)
{
s[i][j]=1;
}
else
s[i][j]=s[i-1][j-1]+s[i-1][j];
for(i=0;i<n;i++)
{
for(j=0;j<=i;j++)
printf("%5d",s[i][j]);
printf("\n");
}
return 0;
}

楊輝三角