From 12195d5728ec5f5932766d9a18b976e3d2b84a75 Mon Sep 17 00:00:00 2001 From: Franck ALBARET Date: Fri, 19 Oct 2018 13:54:06 +0000 Subject: [PATCH] Displays the greater/lower of two numbers --- EXO-04_plus_petit_plus_grand_nombre.cpp | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 EXO-04_plus_petit_plus_grand_nombre.cpp diff --git a/EXO-04_plus_petit_plus_grand_nombre.cpp b/EXO-04_plus_petit_plus_grand_nombre.cpp new file mode 100644 index 0000000..39070ce --- /dev/null +++ b/EXO-04_plus_petit_plus_grand_nombre.cpp @@ -0,0 +1,23 @@ +// Auteur : Franck ALBARET +#include + + 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; + } + }