解题思路:
注意事项:
参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner=new Scanner(System.in); int min=scanner.nextInt(); int max=scanner.nextInt(); int factor=scanner.nextInt(); for (int i = min; i <=max; i++) { if (i%factor==0) {//能被整除就输出 System.out.print(i+" "); } } } }
0.0分
1 人评分
C二级辅导-统计字符 (C语言代码)浏览:1062 |
(格式错误) qq290048663 碰巧告知我吧浏览:678 |
C二级辅导-等差数列 (C语言代码)浏览:628 |
陶陶摘苹果 (C语言代码)浏览:1652 |
简单的a+b (C语言代码)浏览:685 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:729 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:530 |
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:913 |
C语言训练-字符串正反连接 (C语言代码)浏览:664 |
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:549 |