Section courante

A propos

Section administrative du site

MAX

Maximum
Oberon

Syntaxe

PROCEDURE MAX(t):Integer;

Paramètres

Nom Description
t Ce paramètre permet d'indiquer le tableau ou l'ensemble à traiter

Description

Cette procédure permet de retourner le plus grand entier d'un type de données ou d'un ensemble.

Exemple

Voici un exemple typique de l'utilisation de cette procédure :

  1. MODULE MaxSamples;
  2.  
  3. IMPORT Out;
  4.  
  5. BEGIN
  6.  Out.String("MAX(SHORTINT)=");
  7.  Out.Int(MAX(SHORTINT),1);
  8.  Out.Ln;
  9.  Out.String("MAX(INTEGER)=");
  10.  Out.Int(MAX(INTEGER),1);
  11.  Out.Ln;
  12.  Out.String("MAX(REAL)=");
  13.  Out.Real(MAX(REAL));
  14.  Out.Ln;
  15.  Out.String("MAX(SET)=");
  16.  Out.Real(MAX(SET));
  17.  Out.Ln;
  18. END MaxSamples.

on obtiendra le résultat suivant :

MAX(SHORTINT)=32767
MAX(INTEGER)=2147483647
MAX(REAL)=3.40282E+038
MAX(SET)=31.0000


Dernière mise à jour : Samedi, le 7 avril 2018