java.lang.Math.cbrt() 用於返回一個數的立方根。
用法
public static double cbrt(double x)
參數
x= a value
返回
This method returns the cube root of x.
- 如果參數是正或負雙精度值,此方法將返回給定值的立方根。
- 如果參數為 NaN,則此方法將返回 NaN。
- 如果參數是無窮大,此方法將返回與參數相同符號的無窮大。
- 如果參數是正零或負零,此方法將返回與參數相同符號的零。
例子1
public class CbrtExample1
{
public static void main(String[] args)
{
double x = 729;
//return the cube root of x
System.out.println(Math.cbrt(x));
}
}
輸出:
9.0
例子2
public class CbrtExample2
{
public static void main(String[] args)
{
double x = 1.0/0;
// Input positive infinity, Output positive infinity
System.out.println(Math.cbrt(x));
}
}
輸出:
Infinity
例子3
public class CbrtExample3
{
public static void main(String[] args)
{
double x = -0.0;
// Input negative Zero, Output negative zero
System.out.println(Math.cbrt(x));
}
}
輸出:
-0.0
相關用法
- Java Math.copySign()用法及代碼示例
- Java Math.ceil()用法及代碼示例
- Java Math.cosh()用法及代碼示例
- Java Math.cos()用法及代碼示例
- Java Math.multiplyExact()用法及代碼示例
- Java Math.rint()用法及代碼示例
- 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.cbrt() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。