java.lang.Math.rint() 用於將參數四舍五入到最接近的數學整數。
用法
public static double rint(double x)
參數
x= a double value
返回
It returns closest floating-point value to x that is equal to a mathematical integer.
- 如果參數是正數或負數,此方法將返回最接近的值。
- 如果作為數學整數的兩個雙精度值相等,則此方法將返回偶數的整數值。
- 如果參數是 NaN 或無窮大或正零或負零,則此方法將返回參數值作為結果。
例子1
public class RintExample1
{
public static void main(String[] args)
{
double x = 81.68;
// Input positive value, Output round the x
System.out.println(Math.rint(x));
}
}
輸出:
82.0
例子2
public class RintExample2
{
public static void main(String[] args)
{
double x = -37.25;
// Input negative zero, Output round the x
System.out.println(Math.rint(x));
}
}
輸出:
-37.0
例子3
public class RintExample3
{
public static void main(String[] args)
{
double x = 80.5;
double y = 79.5;
// rounds upto 80 which is the nearest even double value
System.out.println(Math.rint(x));
System.out.println(Math.rint(y));
}
}
輸出:
80.0 80.0
示例 4
public class RintExample4
{
public static void main(String[] args)
{
double x = 1.0/0;
// Input positive infinity, Output positive infinity
System.out.println(Math.rint(x));
}
}
輸出:
Infinity
相關用法
- Java Math.random()用法及代碼示例
- Java Math.round()用法及代碼示例
- Java Math.multiplyExact()用法及代碼示例
- Java Math.nextUp()用法及代碼示例
- Java Math.tan()用法及代碼示例
- Java Math.asin()用法及代碼示例
- Java Math.atan()用法及代碼示例
- Java Math.nextAfter()用法及代碼示例
- Java Math.exp()用法及代碼示例
- Java Math.tanh()用法及代碼示例
- Java Math.toDegrees()用法及代碼示例
- Java Math.getExponent()用法及代碼示例
- Java Math.toIntExact()用法及代碼示例
- Java Math.IEEEremainder()用法及代碼示例
- Java Math.sqrt()用法及代碼示例
- Java Math.incrementExact()用法及代碼示例
- Java Math.min()用法及代碼示例
- Java Math.log()用法及代碼示例
- Java Math.log1p()用法及代碼示例
- Java Math.signum()用法及代碼示例
注:本文由純淨天空篩選整理自 Java Math.rint() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。