Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- float MOYENNE(float a,float b);
- int main()
- {
- float a,b,res;
- printf("Entrez deux nombres :");
- scanf("%f %f",&a,&b);
- res=MOYENNE(a,b);
- printf("la moyenne de %f et %f est : %.2f",a,b,res);
- }
- float MOYENNE(float a,float b)
- {
- float res;
- res=(a+b)/2;
- return res;
- }
Advertisement
Add Comment
Please, Sign In to add comment