Der java.lang.Math.sqrt() wird verwendet, um die Quadratwurzel einer Zahl zurückzugeben.
Syntax
public static double sqrt(double x)
Parameter
x= a value
Zurückkehren
This method returns the square root of x.
- Wenn das Argument ein positiver Doppelwert ist, gibt diese Methode die Quadratwurzel eines bestimmten Werts zurück.
- Wenn das Argument ist NaN oder kleiner als Null, wird diese Methode zurückgegeben NaN .
- Wenn das Argument positiv ist Unendlichkeit , diese Methode gibt ein positives Ergebnis zurück Unendlichkeit .
- Ob das Argument positiv oder negativ ist Null , diese Methode gibt das Ergebnis als zurück Null mit gleichem Vorzeichen.
Beispiel 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)); } }Testen Sie es jetzt
Ausgabe:
Java for-Schleife
9.0
Beispiel 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)); } }Testen Sie es jetzt
Ausgabe:
NaN
Beispiel 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)); } }Testen Sie es jetzt
Ausgabe:
vb und vb net
NaN
Beispiel 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)); } }Testen Sie es jetzt
Ausgabe:
Infinity
Beispiel 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)); } }Testen Sie es jetzt
Ausgabe:
0.0