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


Java Math round()用法及代码示例


在本教程中,我们将借助示例了解 Java Math.round() 方法。

round()方法将指定的值四舍五入为最接近的 int 或 long 值并返回它。那是,3.87四舍五入为43.24四舍五入为3.

示例

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

    double a = 3.87;
    System.out.println(Math.round(a));

  }
}

// Output: 4

数学语法。round()

用法:

Math.round(value)

在这里,round() 是一个静态方法。因此,我们使用类名 Math 访问该方法。

参数:

round() 方法采用单个参数。

  • value- 要四舍五入的数字

注意:值的数据类型应该是float或者double.

返回:

  • 如果参数是 float,则返回 int
  • 如果参数是 double,则返回 long

round() 方法:

  • 如果小数点后的值大于或等于 5,则向上舍入
    1.5 => 2
    1.7 => 2
  • 如果小数点后的值小于 5,则向下舍入
    1.3 => 1

示例 1:Java Math.round() 与双精度

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

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


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


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

  }
}

示例 2:Java Math.round() 与浮点数

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

    // Math.round() method
    // value greater than 5 after decimal
    float a = 3.78f;
    System.out.println(Math.round(a));  // 4


    // value equals to 5 after decimal
    float b = 3.5f;
    System.out.println(Math.round(b));  // 4


    // value less than 5 after decimal
    float c = 3.44f;
    System.out.println(Math.round(c));  // 3

  }
}

相关用法


注:本文由纯净天空筛选整理自 Java Math round()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。