c++oj上一道题目,测试数据都对,为何ac不了,求大神指点
#include<iostream>#include<math.h>#include<iomanip>usingnamespacestd;intmain(){intx1,...
#include <iostream>
#include <math.h>
#include <iomanip>
using namespace std;
int main()
{
int x1,t1,x2,t2,w;
double v,s,zhi,t,vs,vn;
while (cin>>x1>>t1>>x2>>t2>>w)
{
vs=x1/t1*1.0; //顺流速度
vn=x2/t2*1.0; //逆流速度
v=(vs+vn)*0.5; //船速
s=(vs-vn)*0.5; //水流速度
zhi=sqrt(v*v-s*s); //直线行走速度
t=w/zhi; //消耗时间
cout<<setprecision(2)<<fixed<<t<<endl;
}
return 0;
}
题目地址:http://acm.hrbust.edu.cn/index.php?m=ProblemSet&a=showProblem&problem_id=1894 展开
#include <math.h>
#include <iomanip>
using namespace std;
int main()
{
int x1,t1,x2,t2,w;
double v,s,zhi,t,vs,vn;
while (cin>>x1>>t1>>x2>>t2>>w)
{
vs=x1/t1*1.0; //顺流速度
vn=x2/t2*1.0; //逆流速度
v=(vs+vn)*0.5; //船速
s=(vs-vn)*0.5; //水流速度
zhi=sqrt(v*v-s*s); //直线行走速度
t=w/zhi; //消耗时间
cout<<setprecision(2)<<fixed<<t<<endl;
}
return 0;
}
题目地址:http://acm.hrbust.edu.cn/index.php?m=ProblemSet&a=showProblem&problem_id=1894 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询