Section courante

A propos

Section administrative du site

INTPOWER

Entier à la puissance
Free Pascal Math

Syntaxe

Function intpower(base:Float;Const exponent:Integer):Float;

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. Uses Math;
  4.  
  5. BEGIN
  6.  WriteLn('INTPOWER(0,1)=',IntPower(0,1):1:1);
  7.  WriteLn('INTPOWER(1,1)=',IntPower(1,1):1:1);
  8.  WriteLn('INTPOWER(-1,0)=',IntPower(-1,0):1:1);
  9.  WriteLn('INTPOWER(-1,1)=',IntPower(-1,1):1:1);
  10.  WriteLn('INTPOWER(2,2)=',IntPower(2,2):1:1);
  11.  WriteLn('INTPOWER(2,8)=',IntPower(2,8):1:1);
  12.  WriteLn('INTPOWER(30,2)=',IntPower(30,2):1:1);
  13.  WriteLn('INTPOWER(-35,4)=',IntPower(-35,4):1:1);
  14. 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 : Samedi, le 18 juillet 2015