编译通过,但不能运行,求解
#include <stdio.h>void main()
{
int i,j,a[2][3];
for(i=0;i<2;i++)
for(j=0;j<3;j++)
scanf("%d",a[i][j]);
for(i=0;i<2;i++)
for(j=0;j<3;j++)
printf("%d\n",a[i][j]);
}
2011-04-19 17:06
2011-04-19 18:02
2011-04-19 21:47