UVA 12502 - Three Families Solution

Sove in C:

#include<stdio.h>
#include<math.h>
int main(){

double r,a, x,y,z;
int i,n;

scanf("%d",&n);
for(i=1;i<=n;i++)
{

  scanf("%lf%lf%lf",&x,&y,&z);
{
    r=z/(x+y);
    a=x*r+(x-y)*r;
}

printf("%.0lf\n",a);
}

return 0;

}

No comments

Most View Post

Recent post

Codeforces Round 925 (Div. 3) 1931D. Divisible Pairs Solution

    Problem Link  :   https://codeforces.com/contest/1931/problem/D S olution in C++: /// Author : AH_Tonmoy #include < bits / stdc ++. ...

Powered by Blogger.