MaxE
From SCAR Divi Manual
function MaxE(a, b: Extended): Extended;
SCAR Divi 3.00 > Current
Returns the largest of 2 given extended floating point values a and b.
begin WriteLn(MaxE(3.1, 4.1)); WriteLn(MaxE(4.1, 3.1)); end.
Output:
4,1 4,1