乘法表0

#include<stdio.h>
int main()
{
int n,m;

for(n = 1;n <= 9; n++)
{
for(m = 1;m<= 9;m++){
printf("%d*%d=%-4d",m,n,m*n);
}
printf("\n");
}

return 0;

}

猜你喜欢

转载自www.cnblogs.com/zhkk/p/9686515.html