MaxE

From SCAR Divi Manual
Revision as of 22:57, 27 June 2011 by Freddy (talk | contribs) (Description)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

function MaxE(a, b: Extended): Extended;

Availability

SCAR Divi 3.00 > Current

Description

Returns the largest of 2 given extended floating point values a and b.

Example

begin
  WriteLn(MaxE(3.1, 4.1));
  WriteLn(MaxE(4.1, 3.1));
end.

Output:

4,1
4,1

See Also