为什么换不了行呢
#include<stdio.h>#include<stdlib.h>
int main()
{
int a,b,s;
for(a=1;a<10;a++)
{
for(b=1;b<=a;b++)
{
s=a*b;
printf("%2d*%d=%2d",a,b,s);
printf("\n");
}
}
printf("why I can't change the line??");
system("pause");
return 0;
}
2012-02-05 13:45
2012-02-05 14:07
2012-02-05 17:17
2012-02-05 17:24
2012-02-05 17:34
2012-02-05 21:08
2012-02-05 21:15
2012-02-06 01:07
2012-02-06 08:25
程序代码:#include<stdio.h>
#include<stdlib.h>
int main()
{
int a,b,s;
for(a=1;a<10;a++)
{
for(b=1;b<=a;b++)
{
s=a*b;
printf("%2d*%d=%2d ",a,b,s);
}
printf("\n");
}
printf("why I can't change the line??");
system("pause");
return 0;
}
2012-02-06 08:42