logo

Java Sqrt() Method


Show

Description

The process returns the square root of the fight. The java sqrt() proceeds the square root of a charge of type twice passed to it as a dispute. If the dispute is NaN or unhelpful, then the result is NaN. If the argument is helpful infinity, then the product is positive infinity.


Syntax

double sqrt(double d)

Parameters

Here is the detail of parameters −

  • d − Any primitive data type.

Return Value

  • This method returns the square root of the argument.

Example

public class Test { 

   public static void main(String args[]) {
      double x = 11.635;
      double y = 2.76;

      System.out.printf("The value of e is %.4f%n", Math.E);
      System.out.printf("sqrt(%.3f) is %.3f%n", x, Math.sqrt(x));
   }
}

This will produce the following result:

Output

The value of e is 2.7183
sqrt(11.635) is 3.411

Here at Intellinuts, we have created a complete Java tutorial for Beginners to get started in Java.