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
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
A voir également:
- Langage c ++
- Langage ascii - Guide
- Langage binaire - Guide
- Pascal langage - Télécharger - Édition & Programmation
- Langage pascal - Télécharger - Édition & Programmation
- Dev-Pascal - Télécharger - Édition & Programmation
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
15 déc. 2009 à 21:39
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
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;
}
#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;
}