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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。