在古代,几乎没有机器人,因此人类的孩子必须学习乘法表。太残忍了!他们一遍又一遍地将乘法表写在笔记本中。多浪费时间啊!我们不会使用任何纸张,也没有必要教你学习乘法表。我们只是在屏幕上显示这个表。你的秘密武器就是:while 循环。
乘法表
- 4
已锁定
评论 (5)
- 受欢迎
- 新
- 旧
你必须先登录才能发表评论
maungnge
10 十月 2020, 17:36
请问哪里出问题?
0
Roman
12 十月 2020, 06:03
Please post your question with the attached solution in the section Help.
0
杰
9 七月 2022, 06:59
int a = 1;
while (a<=10){
int b = 1;
while (b<=10){
System.out.println(a*b);
System.out.println(" ");
b++;
}
System.out.println();
a++;
0
杰
9 七月 2022, 06:59
我这哪出问题咯
0
Roman
18 七月 2022, 05:18
You should read about the differences between the System.out.println and System.out.print methods
0