7-3 列印楊輝三角 (20分) 本題要求按照規定格式列印前N行楊輝三角。

乞力馬紮羅的雪~發表於2020-12-13

7-3 列印楊輝三角 (20分)
本題要求按照規定格式列印前N行楊輝三角。

輸入格式:
輸入在一行中給出N(1≤N≤10)。

輸出格式:
以正三角形的格式輸出前N行楊輝三角。每個數字佔固定4位。

輸入樣例:
6
輸出樣例:
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1

#include <stdio.h>
#include <stdlib.h>

int main()
{
int n,i,j,p,a[11][11];
a[0][0]=0;
scanf("%d",&n);
for(i=0;i<n;i++)
{
for(p=0;p<n-i-1;p++)
{
printf(" “);
}
for(j=0;j<=i;j++)
{
if(ij)
{
a[i][j]=1;
}
else if(j
0)
{
a[i][j]=1;
}
else
{
a[i][j]=a[i-1][j-1]+a[i-1][j];
}
printf(”%4d",a[i][j]);
if(i==j)
{
printf("\n");
}
}
}
return 0;
}

相關文章