Langage c ++

Fermé
2011991 - 15 déc. 2009 à 21:19
arthurik Messages postés 166 Date d'inscription dimanche 27 décembre 2009 Statut Membre Dernière intervention 22 juin 2015 - 29 déc. 2009 à 00:02
Ecrire un programme qui saisi 20 entier >0 et affiche le minimum et le maximum de cet entier
A voir également:

2 réponses

Pacorabanix Messages postés 3248 Date d'inscription jeudi 23 août 2007 Statut Membre Dernière intervention 19 mai 2013 661
15 déc. 2009 à 21:39
0
arthurik Messages postés 166 Date d'inscription dimanche 27 décembre 2009 Statut Membre Dernière intervention 22 juin 2015 14
29 déc. 2009 à 00:02
Salut c'est une petite méthode.

#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
int min = 0, max = 0, nombre = 0,i = 0;

while(i < 20)
{
cout << "Tappez un nombre : ";
cin >> nombre;
while(nombre <= 0)
{
cout << "Ignore, Tappez un nombre plus grand que 0 : ";
cin >> nombre;
}
if(nombre > max)
max = nombre;
if(nombre < min)
min = nombre;
}

system("PAUSE");
return EXIT_SUCCESS;
}
0