乘法表

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