1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
void main()
/*********************************************************************************************/
/* INPUT: 3 cotes */
/* PROCESS: saisie de 3 cotes (0 <= cote <= 10) sat, geom, ana */
/* calcul de la moyenne ponderee mp */
/* affichage de stat, geom, ana */
/* OUTPUT: moyenne ponderee */
/*********************************************************************************************/
{
int stat, geom, ana, mp;
/* saisie des données */
printf(" Cotes des cours (/10)?\n");
printf(" Statistiques?:");
scanf(" %d",&stat);
printf(" Geometrie?:");
scanf(" %d",&geom);
printf(" Analyse?:");
scanf(" %d",&ana);
system("cls");
/* calcul de la moyenne pondérée */
mp=( stat*3 +geom*5 +ana*2 ) /10;
/* affichage */
printf("Statistique %d\n", stat);
printf(" Geometrie %d\n", ana);
printf(" Analyse %d\n", ana);
printf(" Moyenne ponderee= %d\n", mp);
getch();
} |
Partager