Difference between revisions of "IntPow"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function IntPow(Base: Extended; Exponent: Integer): Extended; </source> ==Availability== SCAR Divi 3.00 > Current ==Descriptio...") |
(No difference)
|
Latest revision as of 12:37, 3 July 2011
Definition
function IntPow(Base: Extended; Exponent: Integer): Extended;
Availability
SCAR Divi 3.00 > Current
Description
Calculates the power of base given by an extended Base' and an integer exponent given by Exponent.
Example
begin WriteLn(IntPow(2, 5)); end.
Output:
32