杨辉三角问题。。。求指点!!!
#include"stdafx.h"main()
{
int a[10][10];
int x,y;
for(x=0,y=0;x<10,y<10;x++,y++)
{
a[x][0]=1;
a[x][y]=1;
}
for(x=0;x<10;x++)
for(y=9;y>x;y--)
a[x][y]=0;
for(x=2;x<10;x++)
for(y=2;y<x-1;y++)
a[x][y]=a[x-1][y]+a[x-1][y-1];
for(x=0;x<10;x++)
{
printf("\n");
for(y=0;y<10;y++)
printf("%d",a[x][y]);
}
}
输出有问题,求指点!!