mirror of
https://codeberg.org/DansLeRuSH/c-plus-plus-exercises.git
synced 2024-11-21 19:18:08 +00:00
Displays the greater/lower of two numbers
This commit is contained in:
parent
225e4ca706
commit
12195d5728
1 changed files with 23 additions and 0 deletions
23
EXO-04_plus_petit_plus_grand_nombre.cpp
Normal file
23
EXO-04_plus_petit_plus_grand_nombre.cpp
Normal file
|
@ -0,0 +1,23 @@
|
|||
// Auteur : Franck ALBARET
|
||||
#include <stdio.h>
|
||||
|
||||
int main (void)
|
||||
{
|
||||
int Nbr;
|
||||
int Nbr2;
|
||||
puts ("Quel est le premier nombre ?");
|
||||
scanf ("%i",&Nbr);
|
||||
puts ("Quel est le deuxième nombre ?");
|
||||
scanf ("%i",&Nbr2);
|
||||
{
|
||||
if (Nbr>Nbr2)
|
||||
{
|
||||
printf ("Le plus grand nombre est %i\n",Nbr);
|
||||
printf ("Le plus petit nombre est %i\n",Nbr2);
|
||||
return 0;
|
||||
}
|
||||
printf ("Le plus grand nombre est %i\n",Nbr2);
|
||||
printf ("Le plus petit nombre est %i\n",Nbr2);
|
||||
return 0;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue