IntPow

From SCAR Divi Manual
Revision as of 13:37, 3 July 2011 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> function IntPow(Base: Extended; Exponent: Integer): Extended; </source> ==Availability== SCAR Divi 3.00 > Current ==Descriptio...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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

See Also