0
点赞
收藏
分享

微信扫一扫

4.25日每日一题——小车

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

#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;
}

举报

相关推荐

每日一题(2022年4月4日)

2024.3.15每日一题

2024.4.21每日一题

每日一题(1.5)

《每日一题》闪烁

2024.6.1每日一题

每日一题14

0 条评论