Java StrictMath cbrt()方法

java.lang.StrictMath.cbrt() 方法返回double值的立方根。对于正有限 x,cbrt(-x) == -cbrt(x); 也就是说,负值的立方根是负的立方根。这包括以下情况:

  • 如果参数为NaN,那么结果为NaN。
  • 如果参数为无穷大,那么结果是相同的符号作为参数的无穷大。
  • 如果参数是0,那么结果是相同参数符号为零。

1 语法

public static double cbrt(double a)

2 参数

a :这是double的值

3 返回值

此方法返回立方根。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StrictMath cbrt()方法
 */
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

 

热门文章

优秀文章