VOOZH about

URL: https://www.geeksforgeeks.org/java/strictmath-cbrt-method-in-java/

⇱ StrictMath cbrt() Method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

StrictMath cbrt() Method in Java

Last Updated : 13 Dec, 2021

The java.lang.StrictMath.cbrt() is an inbuilt method in Java which is used to return the cube root of a given double value. The method shows three special results: 

  • The result is a zero with the same sign as the argument when the given argument is zero.
  • The result is infinity with the same sign of argument when the argument is infinite.
  • The result is NaN when the given argument is NaN.


Syntax:  

public static double cbrt(double num)


Parameters: This method accepts one parameter num which is of double type whose cube root is required to be found.
Return Value : The method returns the cube root of num.
Below programs illustrate the java.lang.StrictMath.cbrt() method: 
Program 1:  


Output: 
Cube root of 8.05 = 2.0041580161269152
Cube root of 27.0 = 3.0
Cube root of 0.0 = 0.0

 

Program 2: 


Output: 
Cube root of -8.05 = -2.0041580161269152
Cube root of 128.0 = 5.039684199579493
Cube root of 0.0 = 0.0

 
Comment