Created
April 5, 2017 20:11
-
-
Save m4hi2/17dc18f2dc237596aa9a28acdb12f439 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main() { | |
float A,B,med; | |
scanf("%f %f",&A,&B); | |
med=((A*3.5)+(B*7.5))/(3.5+7.5); | |
printf("MEDIA = %.5f\n",med); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment