mirror of
https://codeberg.org/DansLeRuSH/c-plus-plus-exercises.git
synced 2024-11-21 03:08:09 +00:00
Display the maximum on several entered numbers
This commit is contained in:
parent
71c946ea01
commit
9d46950a77
1 changed files with 2 additions and 2 deletions
|
@ -8,11 +8,11 @@
|
|||
int i=0;
|
||||
int Max=0;
|
||||
clrscr();
|
||||
puts ("entrez un chiffre, entrez un zéro pour arrêter. \n");
|
||||
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");
|
||||
puts ("Entrez un chiffre, entrez un zéro pour arrêter. \n");
|
||||
scanf("%i",&Nbr);
|
||||
if (Nbr>Max)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue