在java中怎么对一个数字取整?

如题所述

在java中对一个数字取整方法很多

    向上取整Math.ceil();

举例:Math.ceil(11.4)=12; Math.ceil(-11.6)=-11;

2.向下取整Math.floor();

举例:Math.floor(11.7)=11;Math.floor(-11.2)=-12;

3.四舍五入Math.round();

顾名思义,四舍五入后取整,其算法为Math.round(x+0.5),即原来的数字加上0.5后再想下取整即可。 

举例:Math.round(11.5)=12; 

Math.round(-11.5)=-11;

温馨提示:答案为网友推荐,仅供参考
相似回答