/*
乘法表
*/
public class Solution {
public static void main(String[] args) {
//write your code here
for(int i=1;i<=10;i++){
for(int j=1;j<=10;j++){
System.out.print(i*j+" ");
}
System.out.println();
}
}
}
无相孤君
第 4 级
[答案]乘法表
正在讨论
评论 (2)
- 受欢迎
- 新
- 旧
你必须先登录才能发表评论
赵江辉
8 五月 2020, 03:20
https://codegym.cc/zh/tasks/zh.codegym.task.task03.task0314
0
Guadalupe Gagnon
23 十二月 2019, 19:12
cant help you if you do not share the solution
0