Sqrt

From SCAR Divi Manual
Revision as of 00:04, 3 July 2011 by Freddy (talk | contribs) (See Also)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

function Sqrt(e: Extended): Extended;

Availability

SCAR Divi 3.00 > Current

Description

Calculates the square root of e. If e < 0, then an "Invalid floating point operation" exception is thrown and the script is stopped

Example

begin
  WriteLn(Sqrt(4));
  WriteLn(Sqrt(16));
end.

Output:

2
4

See Also