mirror of
https://codeberg.org/DansLeRuSH/c-plus-plus-exercises.git
synced 2024-11-21 19:18:08 +00:00
Averaging two numbers
This commit is contained in:
parent
6b780fbedc
commit
01bd8aaa27
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
||||||
int Nbr2;
|
int Nbr2;
|
||||||
puts ("Quel est le premier nombre ?");
|
puts ("Quel est le premier nombre ?");
|
||||||
scanf ("%i",&Nbr);
|
scanf ("%i",&Nbr);
|
||||||
puts ("Quel est le deuxième nombre ?");
|
puts ("Quel est le deuxième nombre ?");
|
||||||
scanf ("%i",&Nbr2);
|
scanf ("%i",&Nbr2);
|
||||||
printf("La moyenne est %i\n",(Nbr+Nbr2)/2);
|
printf("La moyenne est %i\n",(Nbr+Nbr2)/2);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue