Java Math的中floor,round,ceil的用法

来源:互联网 发布:windows什么系统好用 编辑:程序博客网 时间:2024/05/16 08:16

面试题:Java Math的中floor,round,ceil的用法


1、floor的英文是地板,该方法就表示向下取整。

例如:
Math.floor(11.6)的结果是11,
Math.floor(-11.4)的结果-12;

2、round方法,它表示“四舍五入”,

算法为Math.floor(x+0.5),即将原来的数字加上0.5后再向下取整,
所以,
Math.round(11.5)的结果为12,
Math.round(-11.5)的结果为-11。

3、ceil的英文意义是天花板,该方法就表示向上取整。

例如:
Math.ceil(11.3)的结果为12,
Math.ceil(-11.6)的结果为-11;

0 0