mirror of
https://codeberg.org/DansLeRuSH/c-plus-plus-exercises.git
synced 2024-11-21 19:18:08 +00:00
29 lines
585 B
C++
29 lines
585 B
C++
|
// Auteur : Franck ALBARET
|
|||
|
#include <stdio.h>
|
|||
|
|
|||
|
int main (void)
|
|||
|
{
|
|||
|
int Nbr;
|
|||
|
int Nbr2;
|
|||
|
int Nbr3;
|
|||
|
puts ("Quel est le premier nombre ?");
|
|||
|
scanf ("%i",&Nbr);
|
|||
|
puts ("Quel est le deuxi<78>me nombre ?");
|
|||
|
scanf ("%i",&Nbr2);
|
|||
|
puts ("Quel est le troisi<73>me nombre ?");
|
|||
|
scanf ("%i",&Nbr3);
|
|||
|
{
|
|||
|
if (Nbr<Nbr2)
|
|||
|
{
|
|||
|
if (Nbr<Nbr3)
|
|||
|
printf ("La moyenne est %i\n",(Nbr2+Nbr3)/2);
|
|||
|
}
|
|||
|
{
|
|||
|
if (Nbr2<Nbr3)
|
|||
|
printf("La moyenne est %i\n",(Nbr+Nbr3)/2);
|
|||
|
}
|
|||
|
printf("La moyenne est %i\n",(Nbr+Nbr2)/2);
|
|||
|
return 0;
|
|||
|
}
|
|||
|
}
|