Difference between revisions of "Abs"
From SCAR Divi Manual
Line 8: | Line 8: | ||
==Description== | ==Description== | ||
− | + | Returns the [http://en.wikipedia.org/wiki/Absolute_value absolute value] of the [[extended]] floating point value '''e''' which is passed as an argument to the function. | |
==Example== | ==Example== |
Latest revision as of 22:51, 2 July 2011
Definition
function Abs(e: Extended): Extended;
Availability
SCAR Divi 3.00 > Current
Description
Returns the absolute value of the extended floating point value e which is passed as an argument to the function.
Example
begin WriteLn(Abs(1.1)); WriteLn(Abs(-1.1)); end.
Output:
1,1 1,1