java.lang.Math.floor()方法範例


java.lang.Math.floor(double a) 返回最大的(最接近正無窮大)double值,該值小於或等於引數,並等於某個整數。特殊情況:

  • 如果引數值已經等於某個整數,那麼結果與引數一樣。

  • 如果引數為NaN或無窮大,正零或負零,那麼結果是與引數一樣。

宣告

以下是java.lang.Math.floor()方法的宣告

public static double floor(double a)

引數

  • a -- 一個double值

返回值

此方法返回最大的(最接近正無窮大)浮點值,該值小於或等於引數,並等於某個整數。

異常

  • NA

例子

下面的例子顯示lang.Math.floor()方法的使用。

package com.yiibai;

import java.lang.*;

public class MathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 60984.1;
      double y = -497.99;

      // call floor and print the result
      System.out.println("Math.floor(" + x + ")=" + Math.floor(x));
      System.out.println("Math.floor(" + y + ")=" + Math.floor(y));
      System.out.println("Math.floor(0)=" + Math.floor(0));


   }
}

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

Math.floor(60984.1)=60984.0
Math.floor(-497.99)=-498.0
Math.floor(0)=0.0