标签:
1 5 10 15 20
200.00
解题:
#include<stdio.h>
int main()
{
int N;
scanf("%d",&N);
while(N--)
{
float s,M,X,Y,Z,x;
scanf("%f %f %f %f",&M,&X,&Y,&Z);
x=X*M/(Y-X);
s=x*Z;
printf("%.2f\n",s);
}
}
标签:
原文地址:http://www.cnblogs.com/1san14/p/4278803.html