/*
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
*/
Bookmark/Search this post with:
how can i write a code that
how can i write a code that find square root without using math ?
using Doubles.
if i use the System.out.println(Math.sqrt(25.5)); but instead putting a Double where the 25.5 is, will it work? because it doesn't work for me:S
Post new comment