SOLUTION OF URI 1005 URI SOLUTIONS // question of uri 1005 Average 1 //1005 (Mahmud_Jamil) BRUR #include <stdio.h> int main() { float a,b,c=3.5,d=7.5,e,MEDIA; scanf("%f %f",&a,&b); e=c+d; MEDIA=(a*c+b*d)/e; printf("MEDIA = %.5f\n",MEDIA); return 0; } Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook