mirror of
https://codeberg.org/DansLeRuSH/c-plus-plus-exercises.git
synced 2024-11-21 11:18:07 +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 i=0;
|
||||||
int Max=0;
|
int Max=0;
|
||||||
clrscr();
|
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);
|
scanf("%i",&Nbr);
|
||||||
while (Nbr!=0)
|
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);
|
scanf("%i",&Nbr);
|
||||||
if (Nbr>Max)
|
if (Nbr>Max)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue