Skip to content

Instantly share code, notes, and snippets.

@m4hi2
Created April 5, 2017 20:11
Show Gist options
  • Save m4hi2/17dc18f2dc237596aa9a28acdb12f439 to your computer and use it in GitHub Desktop.
Save m4hi2/17dc18f2dc237596aa9a28acdb12f439 to your computer and use it in GitHub Desktop.
#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