UVA 12502 - Three Families

UVA Sep 1, 2020

Problem PDF

Solution:

#include
#include 
int main()
{
    int a,b,c,n,e,d;
    scanf("%d",&n);
        while(n--)
        {
           scanf("%d%d%d",&a,&b,&c);
           e=c*(a+(a-b))/(a+b);
           if(e<=0)
           printf("0\n");
           else
           printf("%d\n",e);
        }
    return 0;
}
https://github.com/Shipu/OnlineJudgeProblemSolutionWithCPlusPlus/tree/master/uva/12502/12502.cpp

Tags

Great! You've successfully subscribed.
Great! Next, complete checkout for full access.
Welcome back! You've successfully signed in.
Success! Your account is fully activated, you now have access to all content.