Java rint()方法

2019-10-16 22:22:57

rint()方法返回值最接近引數的整數。

語法

double rint(double d)

引數

  • d - 它接受double值作為引數。

返回值

  • 此方法返回與引數值最接近的整數。返回值型別為:double

範例

public class Test {

   public static void main(String args[]) {
      double d = 100.675;
      double e = 100.500;
      double f = 100.200;

      System.out.println(Math.rint(d));
      System.out.println(Math.rint(e)); 
      System.out.println(Math.rint(f)); 
   }
}

執行上面範例程式碼,得到以下結果:

101.0
100.0
100.0