Java中数字的四舍五入和取整

2021-06-08 00:00:00 java 四舍五入 数字

Java中对数字进行四舍五入或取整处理经常使用Math库中的三个方法:

  • ceil
  • floor
  • round

1 ceil 向上取整

ceil英文释义:天花板。天花板在上面,所以是向上取整,好记了。

Math.ceil 函数接收一个double类型的参数,用于对数字进行向上取整(遇小数进1),即返回一个大于或等于传入参数的最小整数(但还是以double类型返回)。

2 floor 向下取整

floor英文释义:地板。地板在下面,所以是向下取整,好记了。

Math.floor 函数接收一个double类型的参数,用于对数字进行向下取整(遇小数忽略),即返回一个小于或等于传入参数的最大整数(但还是以double类型返回)。

3 round 四舍五入

round英文释义:附近。一个小数附近的整数,想象一下参数在数轴上的位置,是离哪头的整数近就取哪头的整数,那就是四舍五入,好记了。

Math.round 函数接收一个floatdouble类型的参数,用于对数字进行四舍五入,即返回一个离传入参数最近的整数(如果传入参数是float返回int类型结果,如果传入参数是double返回long类型结果)。

4 案例

以上三个方法,举例如下:

public class Number { 
    public static void main(String[] args){ 
        System.out.println("1.0 ceil:"+Math.ceil(1.0));
        System.out.println("1.1 ceil:"+Math.ceil(1.1));
        System.out.println("1.6 ceil:"+Math.ceil(1.6));
        System.out.println("1.4 floor:"+Math.floor(1.4));
        System.out.println("1.6 floor:"+Math.floor(1.6));
        System.out.println("1.1 round:"+Math.round(1.1f));
        System.out.println("1.6 round:"+Math.round(1.6d));
    }
}

运行结果:
《Java中数字的四舍五入和取整》

    原文作者:晴空排云
    原文地址: https://blog.csdn.net/lxh_worldpeace/article/details/106839012
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。

相关文章