Section courante

A propos

Section administrative du site

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 :

  1. Program IntPowerSamples;
  2.  
  3. {$APPTYPE CONSOLE}
  4.  
  5. Uses SysUtils,Math;
  6.  
  7. BEGIN
  8.  WriteLn('INTPOWER(0,1)=',IntPower(0,1):1:1);
  9.  WriteLn('INTPOWER(1,1)=',IntPower(1,1):1:1);
  10.  WriteLn('INTPOWER(-1,0)=',IntPower(-1,0):1:1);
  11.  WriteLn('INTPOWER(-1,1)=',IntPower(-1,1):1:1);
  12.  WriteLn('INTPOWER(2,2)=',IntPower(2,2):1:1);
  13.  WriteLn('INTPOWER(2,8)=',IntPower(2,8):1:1);
  14.  WriteLn('INTPOWER(30,2)=',IntPower(30,2):1:1);
  15.  WriteLn('INTPOWER(-35,4)=',IntPower(-35,4):1:1);
  16. END.

on obtiendra le résultat suivant :

INTPOWER(0,1)=0.0
INTPOWER(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