當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Math.cbrt()用法及代碼示例


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.cbrt() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。