INTPOWER |
Entier à la puissance |
---|---|
Delphi/Kylix/Lazarus | Math |
Syntaxe
Function IntPower(Base:Extended; Exponent:Integer):Extended; |
Paramètres
Nom | Description |
---|---|
Base | Ce paramètre permet d'indiquer la base de la puissance. |
Exponent | Ce paramètre permet d'indiquer la puissance. |
Description
Cette fonction permet d'effectuer le calcul d'une base à la puissance spécifié.
Exemple
Voici des exemples permettant d'afficher des fonctions de puissance :
- Program IntPowerSamples;
-
- {$APPTYPE CONSOLE}
-
- Uses SysUtils,Math;
-
- BEGIN
- WriteLn('INTPOWER(0,1)=',IntPower(0,1):1:1);
- WriteLn('INTPOWER(1,1)=',IntPower(1,1):1:1);
- WriteLn('INTPOWER(-1,0)=',IntPower(-1,0):1:1);
- WriteLn('INTPOWER(-1,1)=',IntPower(-1,1):1:1);
- WriteLn('INTPOWER(2,2)=',IntPower(2,2):1:1);
- WriteLn('INTPOWER(2,8)=',IntPower(2,8):1:1);
- WriteLn('INTPOWER(30,2)=',IntPower(30,2):1:1);
- WriteLn('INTPOWER(-35,4)=',IntPower(-35,4):1:1);
- END.
on obtiendra le résultat suivant :
INTPOWER(0,1)=0.0INTPOWER(1,1)=1.0
INTPOWER(-1,0)=1.0
INTPOWER(-1,1)=-1.0
INTPOWER(2,2)=4.0
INTPOWER(2,8)=256.0
INTPOWER(30,2)=900.0
INTPOWER(-35,4)=1500625.0
Dernière mise à jour : Mercredi, le 18 février 2015