Sqr Function

Calculates the square root of a numeric expression.

தொடரமைப்பு:

Sqr (Number)

Return value:

Double

அளவுருக்கள்:

Number: Any numeric expression that you want to calculate the square root for.

A square root is the number that you multiply by itself to produce another number, for example, the square root of 36 is 6.

பிழையான குறியீடுகள்:

5 செல்லாத செயல்முறை அழைப்பு

எடுத்துக்காட்டு:

Sub ExampleSqr

Dim iVar As Single

    iVar = 36

    MsgBox Sqr(iVar)

End Sub