當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Math.rint()用法及代碼示例


java.lang.Math.rint() 用於將參數四舍五入到最接近的數學整數。

用法

public static double rint(double x)

參數

x= a double value

返回

It returns closest floating-point value to x that is equal to a mathematical integer.
  • 如果參數是正數或負數,此方法將返回最接近的值。
  • 如果作為數學整數的兩個雙精度值相等,則此方法將返回偶數的整數值。
  • 如果參數是 NaN 或無窮大或正零或負零,則此方法將返回參數值作為結果。

例子1

public class RintExample1
{
    public static void main(String[] args) 
    {
        double x = 81.68;
        // Input positive value, Output round the x
        System.out.println(Math.rint(x));
    }
}

輸出:

82.0

例子2

public class RintExample2
{
    public static void main(String[] args) 
    {
        double x = -37.25;
        // Input negative zero, Output round the x 	
        System.out.println(Math.rint(x));
    }
}

輸出:

-37.0

例子3

public class RintExample3
{
    public static void main(String[] args) 
    {
        double x = 80.5;
        double y = 79.5;
        // rounds upto 80 which is the nearest even double value	
        System.out.println(Math.rint(x));
        System.out.println(Math.rint(y));
    }
}

輸出:

80.0
80.0

示例 4

public class RintExample4
{
    public static void main(String[] args) 
    {
        double x = 1.0/0;
        // Input positive infinity, Output positive infinity 	
        System.out.println(Math.rint(x));
    }
}

輸出:

Infinity






相關用法


注:本文由純淨天空篩選整理自 Java Math.rint() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。