logo

Java Math.sqrt()-methode

De java.lang.Math.sqrt() wordt gebruikt om de vierkantswortel van een getal terug te geven.

Syntaxis

 public static double sqrt(double x) 

Parameter

 x= a value 

Opbrengst

 This method returns the square root of x. 
  • Als het argument een positieve dubbele waarde is, retourneert deze methode de vierkantswortel van een bepaalde waarde.
  • Als de argumentatie dat is NaN of minder dan nul, zal deze methode terugkeren NaN .
  • Als het argument positief is oneindigheid , zal deze methode positief retourneren Oneindigheid .
  • Of het argument positief of negatief is Nul , retourneert deze methode het resultaat als Nul met hetzelfde teken.

voorbeeld 1

 public class SqrtExample1 { public static void main(String[] args) { double x = 81.0; // Input positive value, Output square root of x System.out.println(Math.sqrt(x)); } } 
Test het nu

Uitgang:

 9.0 

Voorbeeld 2

 public class SqrtExample2 { public static void main(String[] args) { double x = -81.78; // Input negative value, Output NaN System.out.println(Math.sqrt(x)); } } 
Test het nu

Uitgang:

 NaN 

Voorbeeld 3

 public class SqrtExample3 { public static void main(String[] args) { double x = 0.0/0; // Input NaN, Output NaN System.out.println(Math.sqrt(x)); } } 
Test het nu

Uitgang:

 NaN 

Voorbeeld 4

 public class SqrtExample4 { public static void main(String[] args) { double x = 1.0/0; // Input positive infinity, Output positive infinity System.out.println(Math.sqrt(x)); } } 
Test het nu

Uitgang:

 Infinity 

Voorbeeld 5

 public class SqrtExample5 { public static void main(String[] args) { double x = 0.0; // Input positive Zero, Output positive zero System.out.println(Math.cbrt(x)); } } 
Test het nu

Uitgang:

 0.0