java.lang.Math.sqrt() Bir sayının karekökünü döndürmek için kullanılır.
Sözdizimi
public static double sqrt(double x)
Parametre
x= a value
Geri dönmek
This method returns the square root of x.
- Argüman pozitif double değeri ise, bu yöntem belirli bir değerin karekökünü döndürür.
- Eğer argüman NaN veya sıfırdan küçükse bu yöntem şunu döndürür: NaN .
- Argüman olumlu ise sonsuzluk , bu yöntem olumlu sonuç verecektir Sonsuzluk .
- Argüman olumlu ya da olumsuz ise Sıfır , bu yöntem sonucu şu şekilde döndürecektir: Sıfır aynı işaretle.
örnek 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)); } }Şimdi Test Edin
Çıktı:
9.0
Örnek 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)); } }Şimdi Test Edin
Çıktı:
NaN
Örnek 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)); } }Şimdi Test Edin
Çıktı:
NaN
Örnek 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)); } }Şimdi Test Edin
Çıktı:
Infinity
Örnek 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)); } }Şimdi Test Edin
Çıktı:
Java dizesi.format
0.0