解题思路:
注意事项:
参考代码:
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();
if(max<min) {
int t=max;
max=min;
min=t;
}
for(int i=min;i<=max;i++) {
if(i%factor==0)
System.out.print(i+" ");
}
}
}
0.0分
0 人评分
矩形面积交 (C语言代码)浏览:1553 |
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:695 |
C语言训练-字符串正反连接 (C语言代码)浏览:664 |
字符串的输入输出处理 (C语言代码)浏览:1020 |
C语言程序设计教程(第三版)课后习题7.1 (C语言代码)浏览:1267 |
C语言训练-尼科彻斯定理 (C语言代码)浏览:509 |
C语言训练-亲密数 (C语言代码)浏览:697 |
有关字符,字符串的输入输出函数说明浏览:498 |
永远的丰碑 (C语言代码)浏览:608 |
单词个数统计 (C语言代码)浏览:1046 |