找到了定义的数组是9*9的最后一个循环时 i=9 ,然后自加了就 等于10了, 超出范围了
#include<stdio.h>
int main()
{
int i,j;
int a[10][10];
for(i=1;i<=9;i++)
for(j=1;j<=i;j++)
{
a[i][j]=(i)*(j);
printf("%5d",a[i][j]);
if(j==i)
printf("\n"); getch();
}
getch();
return 0;
}