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

RESTful APIs with CRUD Operations in Laravel 12| (2025)

  RESTful APIs serve as the foundation of modern web development. They follow a set of rules called Representational State Transfer (REST) t...

Powered by Blogger.