Difference between revisions of "MaxE"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function MaxE(a, b: Extended): Extended; </source> ==Availability== SCAR Divi 3.00 > Current ==Description== Returns the large...") |
(No difference)
|
Revision as of 22:57, 27 June 2011
Definition
function MaxE(a, b: Extended): Extended;
Availability
SCAR Divi 3.00 > Current
Description
Returns the largest of 2 given extended values a and b.
Example
begin WriteLn(MaxE(3.1, 4.1)); WriteLn(MaxE(4.1, 3.1)); end.
Output:
4,1 4,1