SQR                                                                        Function

SQR(number)

Description

SQR returns a double-precision value representing the square root of a number. The required parameter, number, is any valid numeric expression greater than or equal to zero.

Example

REM SQR Example

'SQR calculates square root of a number

PRINT "The square root of 69 is " & SQR(69)

Output

The square root of 69 is 8.30662386291807

Related Items