Sqr Function

Calculates the square root of a numeric expression.

სინტაქსი


Sqr (Number)

დაბრუნებული მნიშვნელობა:

Double

Parameters:

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.

Error codes:

D'oh! You found a bug (text/sbasic/shared/00000003.xhp#err5 not found).

მაგალითი:


Sub ExampleSqr
Dim iVar As Single
    iVar = 36
    MsgBox Sqr(iVar)
End Sub