Old stuff/ecole_etude_fac_de_pau/licence_2/ise/tp4/main.c
(Deskargatu)#include <stdio.h>
#include "moy.h"
int
main()
{
float a, b, c;
printf("Entrez a et b : ");
scanf("%f%f", &a, &b);
c = moyenne(a, b);
printf("La moyenne est : %f\n", c);
return 0;
}