java.lang.StrictMath.cbrt() 方法返回double值的立方根。對於正有限 x,cbrt(-x) == -cbrt(x); 也就是說,負值的立方根是負的立方根。這包括以下情況:
以下是java.lang.StrictMath.cbrt()方法的宣告
public static double cbrt(double a)
a -- 這是double的值
此方法返回立方根。
NA
下面的例子顯示java.lang.StrictMath.cbrt()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = 8.05 , d2 = 729, d3 = 0; // returns the cube root of a double value double cbrtValue = StrictMath.cbrt(d1); System.out.println("Cube root of " + d1 + " = " + cbrtValue); cbrtValue = StrictMath.cbrt(d2); System.out.println("Cube root of " + d2 + " = " + cbrtValue); cbrtValue = StrictMath.cbrt(d3); System.out.println("Cube root of " + d3 + " = " + cbrtValue); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Cube root of 8.05 = 2.0041580161269152 Cube root of 729 = 9.0 Cube root of 0 = 0.0