Syntax
Public Function MathSqr(Number As Double) As Double
Description
This function used to return the square root of the specified given number.
Parameters
Key | Description |
Number | Positive numeric value of type Double. |
Return value
Returns the square root value.
Sample
Public Sub main()AlertMessage (MathSqr(4.0)) ' Sqr (4) = 2 . the Alert Message will return 2. End Sub
See Also