Det java.lang.Math.sqrt() bruges til at returnere kvadratroden af et tal.
java ups koncepter
Syntaks
public static double sqrt(double x)
Parameter
x= a value
Vend tilbage
This method returns the square root of x.
- Hvis argumentet er positiv dobbeltværdi, vil denne metode returnere kvadratroden af en given værdi.
- Hvis argumentet er NaN eller mindre end nul, vil denne metode vende tilbage NaN .
- Hvis argumentet er positivt uendelighed , vil denne metode returnere positivt Uendelighed .
- Hvis argumentet er positivt eller negativt Nul , vil denne metode returnere resultatet som Nul med samme tegn.
Eksempel 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 det nu
Produktion:
9.0
Eksempel 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 det nu
Produktion:
NaN
Eksempel 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 det nu
Produktion:
NaN
Eksempel 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 det nu
Produktion:
Infinity
Eksempel 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 det nu
Produktion:
0.0