Section courante

A propos

Section administrative du site

CEIL

Conversion de l'entier supérieur ou égale
Delphi/Kylix/Lazarus Math

Syntaxe

Function Ceil(X:Extended):Integer;

Paramètres

Nom Description
X Ce paramètre permet d'indiquer l'expression contenant le nombre à traiter

Description

Cette fonction retourne la valeur arrondit.

Exemple

Voici un exemple montrant une utilisation plus classique de cette fonction :

  1. Program CeilSamples;
  2.  
  3. {$APPTYPE CONSOLE}
  4. Uses SysUtils,Math;
  5.  
  6. BEGIN
  7.  WriteLn('CEIL(1)=',ceil(1));
  8.  WriteLn('CEIL(1.1)=',ceil(1.1));
  9.  WriteLn('CEIL(1.7)=',ceil(1.7));
  10.  WriteLn('CEIL(-1)=',ceil(-1));
  11.  WriteLn('CEIL(-1.1)=',ceil(-1.1));
  12.  WriteLn('CEIL(-1.7)=',ceil(-1.7));
  13.  WriteLn('CEIL(30.2)=',ceil(30.2));
  14.  WriteLn('CEIL(-35.4)=',ceil(-35.4));
  15. END.

on obtiendra le résultat suivant :

CEIL(1)=1
CEIL(1.1)=2
CEIL(1.7)=2
CEIL(-1)=-1
CEIL(-1.1)=-1
CEIL(-1.7)=-1
CEIL(30.2)=31
CEIL(-35.4)=-35


Dernière mise à jour : Mercredi, le 18 février 2015