在本教程中,我們將借助示例了解 Java Math.round() 方法。
round()
方法將指定的值四舍五入為最接近的 int 或 long 值並返回它。那是,3.87四舍五入為4和3.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()用法及代碼示例
- Java Math random()用法及代碼示例
- Java Math rint()用法及代碼示例
- Java Math sqrt()用法及代碼示例
- Java Math addExact(long x, long y)用法及代碼示例
- Java Math sinh()用法及代碼示例
- Java Math nextAfter()用法及代碼示例
- Java Math cos()用法及代碼示例
- Java Math multiplyFull()用法及代碼示例
- Java Math incrementExact(int x)用法及代碼示例
- Java Math tan()用法及代碼示例
- Java Math nextUp()用法及代碼示例
- Java Math addExact()用法及代碼示例
- Java Math atan2()用法及代碼示例
- Java Math max()用法及代碼示例
- Java Math incrementExact()用法及代碼示例
- Java Math floorMod()用法及代碼示例
- Java Math acos()用法及代碼示例
- Java Math exp()用法及代碼示例
- Java Math hypot()用法及代碼示例
注:本文由純淨天空篩選整理自 Java Math round()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。