Java.lang.Math.cbrt() 方法
描述
java.lang.Math.cbrt(double a) 返回一个双精度值的立方根。 对于正有限 x,cbrt(-x) == -cbrt(x); 也就是说,负值的立方根是该值大小的立方根的负数。 特别案例 −
如果参数为 NaN,则结果为 NaN。
如果参数是无限的,则结果是与参数相同符号的无穷大。
如果参数为零,则结果为零,符号与参数相同。
计算结果必须在精确结果的 1 ulp 范围内。
声明
以下是 java.lang.Math.cbrt() 方法的声明。
public static double cbrt(double a)
参数
a − 一个值。
返回值
此方法返回 a 的立方根。
异常
NA
示例
下面的例子展示了 lang.Math.cbrt() 方法的使用。
package com.tutorialspoint; import java.lang.*; public class MathDemo { public static void main(String[] args) { // get two double numbers double x = 125; double y = 10; // print the cube roots of three numbers System.out.println("Math.cbrt(" + x + ")=" + Math.cbrt(x)); System.out.println("Math.cbrt(" + y + ")=" + Math.cbrt(y)); System.out.println("Math.cbrt(-27)=" + Math.cbrt(-27)); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
Math.cbrt(125)=5.0 Math.cbrt(10)=2.154434690031884 Math.cbrt(-27)=-3.0