第一个照着书中弄的东东,求错处````````````````
#include <stdio.h>#include <stdlib.h>
int main(int argc, char *argv[])
{
int i,j;
for(i=1;j<=9;j++)
{
for(j=1;j<=9;j++)
{
printf("%d*%d= %2d ",i,j,i*j);
}
printf("\n");
}
system("PAUSE");
return 0;
}
执行是执行了,但却不像书中那样``````