#include <stdio.h>
#include <stdlib.h>
int main(){
for (int a = 1; a < 10; a++){
for (int b = 1; b < 10; b++){
if (a<b){
continue;
}
printf("%d*%d=%d\t", b, a, a*b);
}
printf("\n");
}
system(“pause”);
return 0;
}
2、打印乘法口诀表
最新推荐文章于 2023-11-24 21:39:29 发布

1427

被折叠的 条评论
为什么被折叠?



