The java.lang.Math.sqrt() tiek izmantots, lai atgrieztu skaitļa kvadrātsakni.
Sintakse
public static double sqrt(double x)
Parametrs
x= a value
Atgriezties
This method returns the square root of x.
- Ja argumentam ir pozitīva dubultvērtība, šī metode atgriezīs noteiktās vērtības kvadrātsakni.
- Ja arguments ir NaN vai mazāks par nulli, šī metode atgriezīsies NaN .
- Ja arguments ir pozitīvs bezgalība , šī metode atgriezīsies pozitīvi Bezgalība .
- Ja arguments ir pozitīvs vai negatīvs Nulle , šī metode atgriezīs rezultātu kā Nulle ar tādu pašu zīmi.
1. piemērs
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)); } }Izmēģiniet to tūlīt
Izvade:
9.0
2. piemērs
public class SqrtExample2 { public static void main(String[] args) { double x = -81.78; // Input negative value, Output NaN System.out.println(Math.sqrt(x)); } }Izmēģiniet to tūlīt
Izvade:
NaN
3. piemērs
public class SqrtExample3 { public static void main(String[] args) { double x = 0.0/0; // Input NaN, Output NaN System.out.println(Math.sqrt(x)); } }Izmēģiniet to tūlīt
Izvade:
NaN
4. piemērs
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)); } }Izmēģiniet to tūlīt
Izvade:
Infinity
5. piemērs
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)); } }Izmēģiniet to tūlīt
Izvade:
0.0