首页 > 代码库 > Math.round() ceil floor
Math.round() ceil floor
Math.round(11.5)等於多少? Math.round(-11.5)等於多少?
Math类中提供了三个与取整有关的方法:ceil、floor、round,这些方法的作用与它们的英文名称的含义相对应,例如,ceil的英文意义是天花板,该方法就表示向上取整,Math.ceil(11.3)的结果为12,Math.ceil(-11.3)的结果是-11;floor的英文意义是地板,该方法就表示向下取整,Math.ceil(11.6)的结果为11,Math.ceil(-11.6)的结果是-12;最难掌握的是round方法,它表示“四舍五入”,算法为Math.floor(x+0.5),即将原来的数字加上0.5后再向下取整,所以,Math.round(11.5)的结果为12,Math.round(-11.5)的结果为-11。
System.out.println(Math.round(-11.5)+" "+Math.floor(-11.5+0.5)); //-11 System.out.println(Math.round(-11.6)+" "+Math.floor(-11.6+0.5));//-12
1 // 四舍五入 2 System.out.println(Math.round(11.4)); 3 System.out.println(Math.round(11.6)); 4 System.out.println(Math.round(-11.2)); 5 System.out.println(Math.round(-11.6)); 6 // 向上取整 7 System.out.println(Math.ceil(11.6)); 8 System.out.println(Math.ceil(-11.4)); 9 // 向下取整10 System.out.println(Math.floor(11.6));11 System.out.println(Math.floor(-11.4));
// 四舍五入 System.out.println(Math.round(11.4));//11 System.out.println(Math.round(11.5));//12 System.out.println(Math.round(-11.4));//-11 System.out.println(Math.round(-11.5)); //-11 System.out.println(Math.round(-11.6));//-12
Math.round() ceil floor
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。