当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。