地址:http://acm.hdu.edu.cn/showproblem.php?pid=2548
题意:中文。
mark:著名的ooxx题。。。不解释。
代码:
# include <stdio.h>
# include <math.h>
int main ()
{
int T ;
double a, b, c, d ;
scanf ("%d", &T) ;
while (T--)
{
scanf ("%lf%lf%lf%lf", &a, &b, &c, &d) ;
printf ("%.3lf\n", d/(a+b)*c) ;
}
return 0 ;
}