Pascal

Fermé
poutchii - 9 avril 2011 à 18:29
diablond Messages postés 183 Date d'inscription samedi 18 septembre 2010 Statut Membre Dernière intervention 2 mai 2011 - 9 avril 2011 à 19:49
Bonjour,

que faire pour arriver a ecrire un programme pouvant afficher le minimum et le maximum de 3 entiers
merci pour votre aide

1 réponse

diablond Messages postés 183 Date d'inscription samedi 18 septembre 2010 Statut Membre Dernière intervention 2 mai 2011 48
9 avril 2011 à 19:49
Var
Max, Min, a, c, d : integer
begin
read(a);
read(b);
read(c);
max := a;

if max < b then max := b;
if max < c then max := c;

min := a;
if min > b then min := b;
if min > c then min := c;

writeln('Max : ',max)
writeln('Min : ',min)

End
0