public static void main(String[] args) {
//在此编写你的代码
int i=1;
while (i <=10){
int j=1;
while (j<=10){
System.out.print(i*j+" ");
j++;
}
i++;
System.out.println();
}
}
阿乐
第 10 级
使用while实现
正在讨论
评论 (1)
- 受欢迎
- 新
- 旧
你必须先登录才能发表评论
Guadalupe Gagnon
20 二月 2021, 16:20
Why do people think the help section is to post their solutions? I don't get it, is it a cultural thing?
0