您的位置:首页 > 编程语言 > Java开发

Java Math的 floor,round和ceil的总结

2014-03-10 10:55 375 查看
floor 返回不大于的最大整数 (坐标向左)

round方法,它表示“四舍五入”,算法为Math.floor(x+0.5),即将原来的数字加上0.5后再向下取整,所以,Math.round(11.5)的结果为12,Math.round(-11.5)的结果为-11。

ceil 则是不小于他的最小整数 (坐标向右)

看例子
Math.floorMath.roundMath.ceil
1.411 2
1.512 2
1.612 2
-1.4-2-1 -1
-1.5-2-1 -1
-1.6-2-2 -1
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: