mirror of
https://codeberg.org/DansLeRuSH/c-plus-plus-exercises.git
synced 2024-11-21 11:18:07 +00:00
26 lines
484 B
C++
26 lines
484 B
C++
// Auteur : ALBARET Franck
|
|
#include <stdio.h>
|
|
#include <conio.h>
|
|
|
|
int main (void)
|
|
{
|
|
int Nbr;
|
|
int i=0;
|
|
int Max=0;
|
|
clrscr();
|
|
puts ("Entrez un chiffre, entrez un zéro pour arrêter. \n");
|
|
scanf("%i",&Nbr);
|
|
while (Nbr!=0)
|
|
{
|
|
puts ("Entrez un chiffre, entrez un zéro pour arrêter. \n");
|
|
scanf("%i",&Nbr);
|
|
if (Nbr>Max)
|
|
{
|
|
Max=Nbr;
|
|
}
|
|
i=i+1;
|
|
}
|
|
printf("Le nombre maximum est %i. \n",Max);
|
|
getch();
|
|
return 0;
|
|
}
|