IntPow

From SCAR Divi Manual
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