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


Java Math floor()用法及代碼示例


在本教程中,我們將借助示例了解 Java Math.floor() 方法。

floor()方法向下舍入指定的 double 值並返回它。四舍五入的值將等於一個數學整數。也就是說,價值3.8將四舍五入為3.0等於整數3.

示例

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

    double a = 3.8;
    System.out.println(Math.floor(a));

  }
}

// Output: 3.0

數學.floor() 語法

用法:

Math.floor(double value)

在這裏,floor() 是一個靜態方法。因此,我們使用類名 Math 訪問該方法。

Math.floor() 參數

floor() 方法采用單個參數。

  • value- 向上四舍五入的數字

Math.floor() 返回值

  • 返回等於數學整數的舍入值

注意:返回值是小於或等於指定參數的最大值。

示例:Java 數學。floor()

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

    // Math.floor() method
    // value greater than 5 after decimal
    double a = 1.878;
    System.out.println(Math.floor(a));  // 1.0


    // value equals to 5 after decimal
    double b = 1.5;
    System.out.println(Math.floor(b));  // 1.0


    // value less than 5 after decimal
    double c = 1.34;
    System.out.println(Math.floor(c));  // 1.0

  }
}

相關用法


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