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


Java cbrt()用法及代碼示例


java.lang.Math.cbrt()方法返回雙精度值的多維數據集根。筆記:

  • 立方根負值是該值大小的立方根的負數。
  • 如果參數為NaN,則結果為NaN。
  • 如果參數為無窮大,則結果為無窮大,其符號與參數相同。
  • 如果自變量為零,則結果為零,其符號與自變量相同。

用法:

public static double cbrt(double a)
參數:
a:an argument
返回:
This method returns the cube root of a.

例:顯示java.lang.Math.cbrt()方法的用法方式。

// Java program to demonstrate working 
// of java.lang.Math.cbrt() method 
import java.lang.Math; 
  
class Gfg { 
  
    // driver code 
    public static void main(String args[]) 
    { 
        double a = 125.0; 
        double b = 1.0 / 0; 
        double c = -(1.0 / 0); 
        double d = 0.0; 
        double e = -0.0; 
  
        System.out.println(Math.cbrt(a)); 
  
        // Input Positive Infinity 
        // Output Positive Infinity 
        System.out.println(Math.cbrt(b)); 
  
        // Input Negative Infinity 
        // Output Negative Infinity 
        System.out.println(Math.cbrt(c)); 
  
        // Input Positive Zero 
        // Output Positive Zero 
        System.out.println(Math.cbrt(d)); 
  
        // Input Negative Zero 
        // Output Negative Zero 
        System.out.println(Math.cbrt(e)); 
    } 
}

輸出:

5.0
Infinity
-Infinity
0.0
-0.0

相關用法


注:本文由純淨天空篩選整理自Niraj_Pandey大神的英文原創作品 Java cbrt() method with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。