java.lang.StrictMath.rint()方法範例


java.lang.StrictMath.rint() 方法返回最接近引數的double值,並等於某個整數。如果兩個double值是整數都同樣接近引數的值,結果是整數值是偶數。它包括以下情況:

  • 如果引數值已經等於某個整數,那麼結果與引數一樣。
  • 如果引數為NaN或無窮大,正零或負零,那麼結果與引數一樣。

宣告

以下是java.lang.StrictMath.rint()方法的宣告

public static double rint(double a)

引數

  • a -- 這是所使用的值。

返回值

此方法返回最接近的浮點值到等於某個整數。

異常

  • NA

例子

下面的例子顯示java.lang.StrictMath.rint()方法的使用。

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    double d1 = 6.1 , d2 = 57.5 , d3 = 9.7;

    /* returns the double value that is close to the argument 
    and is equal to a mathematical integer. */

    double rintValue = StrictMath.rint(d1); 
    System.out.println("integer value closest to " + d1 + " = " + rintValue);

    rintValue = StrictMath.rint(d2); 
    System.out.println("integer value closest to " + d2 + " = " + rintValue);

    rintValue = StrictMath.rint(d3); 
    System.out.println("integer value closest to " + d3 + " = " + rintValue);
  }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

integer value closest to 6.1 = 6.0
integer value closest to 57.5 = 58.0
integer value closest to 9.7 = 10.0