Daffodil International University
Problem Link
//Please follow from main function
#include<stdio.h>
int main()
{
double A, B, MEDIA;
scanf("%lf", &A);
A=A*3.5;
scanf("%lf", &B);
B=B*7.5;
MEDIA=(A+B)/11;
printf("MEDIA = %.5lf\n", MEDIA);
return 0;
}
uva
0 Comments