您的当前位置:首页正文

Java中Math.round()的用法

2024-11-08 来源:个人技术集锦

Java中的Math.round()方法是将浮点型进行“四舍五入”转换为int类型的一个方法。使用细节可以看例题:

小数点后第一位等于五时:

System.out.println(Math.round(-11.5)); -> 输出为 -11
System.out.println(Math.round(11.5)); -> 输出为 12

小数点后第一位小于五时:

System.out.println(Math.round(-11.41)); -> 输出为 -11
System.out.println(Math.round(11.41)); -> 输出为 11

小数点后第一位大于五时:

System.out.println(Math.round(-11.58)); -> 输出为 -12
System.out.println(Math.round(11.58)); -> 输出为 12

代码验证:

public class main {
    public static void main(String[] args) {

        System.out.println(Math.round(-11.5));
        System.out.println(Math.round(11.5));

        System.out.println(Math.round(-11.41));
        System.out.println(Math.round(11.41));

        System.out.println(Math.round(-11.58));
        System.out.println(Math.round(11.58));
    }
}

结果图:

一句话结论:将括号内的数 + 0.5 向下取整即为输出。

验证结论:

小数点后第一位等于五时:

System.out.println(Math.round(-11.5)); -> -11.5 + 0.5 = -11 向下取整输出为 -11
System.out.println(Math.round(11.5)); -> 11.5 + 0.5 = 12 向下取整输出为 12

小数点后第一位小于五时:

System.out.println(Math.round(-11.41)); -> -11.41 + 0.5 = -10.91 向下取整输出为 -11
System.out.println(Math.round(11.41)); -> 11.41 + 0.5 = 11.91 向下取整输出为 11

小数点后第一位大于五时:

System.out.println(Math.round(-11.58)); -> -11.58 + 0.5 = -11.08 向下取整输出为 -12
System.out.println(Math.round(11.58)); -> 11.58 + 0.5 = 12.05 向下取整输出为 12
Top