 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Get square root of a number using Math.sqrt in Java
In order to get the square root of a number in Java, we use the java.lang.Math.pow() method. The Math.pow(double a) method accepts one argument of the double data type and returns a value which is the square root of the argument.
Declaration − The java.lang.Math.sqrt() method is declared as follows −
public static double sqrt(double a)
where a is the number whose square root is to be found.
Let us see a program where we find the square root of number using the Math.sqrt() method.
Example
import java.lang.Math; public class Example {    public static void main(String[] args) {       // declaring and initializing some double values       double x = 25;       double y = 81;       // computing the square roots       System.out.println("The square root of "+ x + " is "+ Math.sqrt(x));       System.out.println("The square root of "+ y + " is "+ Math.sqrt(y));    } }  Output
The square root of 25.0 is 5.0 The square root of 81.0 is 9.0
Advertisements
 