具体是什么问题
贴代码看看
2018-02-17 16:11
2018-02-17 16:54
2018-02-17 16:56
程序代码:#include<stdio.h>
int main(void)
{
int a,b;
for(a=1;a<10;a++)
{
for(b=1;b<=a;b++)
printf("%d*%d=%2d ",b,a,a*b);
putchar(10);
}
return 0;
}[此贴子已经被作者于2018-2-18 14:28编辑过]
2018-02-18 11:26
2018-02-18 11:37

2018-02-18 11:50
~

2018-02-19 16:51
2018-02-19 17:47
2018-02-19 19:07

2018-02-20 12:44