java程序:按照十个数一行,输出100-200之间所有能够被3整除的数
答案:1 悬赏:80 手机版
解决时间 2021-02-04 20:26
- 提问者网友:动次大次蹦擦擦
- 2021-02-03 22:19
java程序:按照十个数一行,输出100-200之间所有能够被3整除的数
最佳答案
- 五星知识达人网友:末日狂欢
- 2021-02-03 23:25
public class Test7 {
public static void main(String[] args) {
int index = 1;
for (int i = 100; i <= 200; i++) {
if (i % 3 == 0) {
System.out.print(i + " ");
if ((index++) % 10 == 0) {
System.out.println();
}
}
}
}
}
public static void main(String[] args) {
int index = 1;
for (int i = 100; i <= 200; i++) {
if (i % 3 == 0) {
System.out.print(i + " ");
if ((index++) % 10 == 0) {
System.out.println();
}
}
}
}
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯