C#’ta Math.Sqrt(), belirtilen sayının karekökünü hesaplamak için kullanılan bir Math sınıfı yöntemidir.
Kullanımı:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
Input : Math.Sqrt(81) Output : 9 Input : Math.Sqrt(-81) Output : NaN Input : Math.Sqrt(0.09) Output : 0.3 Input : Math.Sqrt(0) Output : 0 Input : Math.Sqrt(-0) Output : 0 |
Örnek 1 :
1 2 3 4 5 6 7 8 |
public static void Main() { double x = 81; Console.Write(Math.Sqrt(x)); } |
Örnek 2:
1 2 3 4 5 6 7 8 |
public static void Main() { double x = 0.09; Console.Write(Math.Sqrt(x)); } |
Add Comment