Sqrt - metoda obiektu Pm
Opis:
Pierwiastek kwadratowy danej liczby.
Składnia:
Double Sqrt(Double nValue)
Parametry:
nValue | (Double) Liczba większe niż 0 |
---|
Przykład:
JavaScriptVBScriptWybierz oraz skopiuj do schowka
var nSqr = Pm.Sqrt(4);
// Zwraca 2
nSqr = Pm.Sqrt(23);
// Zwraca 4.79583152331272
nSqr = Pm.Sqrt(0);
// Zwraca 0
nSqr = Pm.Sqrt(-4);
// Zwraca NaN
Dim nSqr
nSqr = Pm.Sqrt(4)
' Zwraca 2
nSqr = Pm.Sqrt(23)
' Zwraca 4.79583152331272
nSqr = Pm.Sqrt(0)
' Zwraca 0
nSqr = Pm.Sqrt(-4)
' Zwraca NaN