赞
踩
分析:
- public static void main(String[] args) {
- int count = 0;
- double min = -10.8;
- double max = 5.9;
- // 这样处理,变量 i 就是区间之间所有的整数
- for (int i = (int)min; i < max; i++) {
- int abs = Math.abs(i);//绝对值
- if (abs > 6 || abs < 2.1) {
- System.out.println(i);//-10 -9 -8 -7 -2 -1 0 1 2
- count++;
- }
- }
- System.out.println("总数是"+count);// 9
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。