Find square root of a number using Math.sqrt
- /*
- Find square root of a number using Math.sqrt
- This java example shows how to find square root of a given number using
- sqrt method of Java Math class.
- */
- public class FindSquareRootExample {
- public static void main(String[] args) {
- /*
- * To find square root value of a number, use
- * static double sqrt(double d1) method Java Math class.
- */
- //returns square root of 9, i.e. 3
- System.out.println(Math.sqrt(9));
- //returns square root of 25.5
- System.out.println(Math.sqrt(25.5));
- }
- }
- /*
- Output would be
- 3.0
- 5.049752469181039
- */



