您的位置:首页 > 其它

题目97 兄弟郊游问题

2016-07-29 12:36 232 查看


     已AC代码:

#include<cstdio>
using namespace std;

int main()
{
int t;
scanf("%d", &t);
while(t--)
{
double x, m, y, z;
double s;
scanf("%lf%lf%lf%lf", &m, &x, &y, &z);
s = z*(x*m/(y-x));
printf("%.2lf\n", s);
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  南阳理工OJ