To calculate the cube root and the square root of a double
value we can use the Math.cbrt(double a)
and Math.sqrt(double a)
static method call.
package org.kodejava.example.math;
public class CubeSquareRootExample {
public static void main(String[] args) {
double cube = 125.0d;
double square = 100.0d;
// Get the cube root of double value
double cubeRoot = Math.cbrt(cube);
System.out.println("Cube root of " + cube + " is " + cubeRoot);
// Get the square root of double value
double squareRoot = Math.sqrt(square);
System.out.println("Square root of " + square + " is " + squareRoot);
}
}
This snippet will print the following output:
Cube root of 125.0 is 5.0
Square root of 100.0 is 10.0
Latest posts by Wayan (see all)
- How do I install Calibri font in Ubuntu? - January 24, 2021
- How do I create a generic class in Java? - January 1, 2021
- How do I convert java.util.TimeZone to java.time.ZoneId? - April 25, 2020