0
点赞
收藏
分享

微信扫一扫

4.25日每日一题——小车

精进的医生 2022-04-25 阅读 73

#include<bits/stdc++.h>
using namespace std;
int main()
{
	double ab,a,b,t;
	cin>>ab>>a>>b;
	t=ab/(a+b/2+a/2)*(b/2+a/2)/b+ab/(a+b/2+a/2);
	cout<<fixed<<setprecision(6)<<t<<endl;
	return 0;
}

举报

相关推荐

0 条评论