题解
2023-06-25 15:03:56
发布于:上海
56阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
double s,t1,t2;
cin>>s>>t1>>t2;
double ball=s/t1*t2;
double num=ball*3/4/3.14;
double r=pow(num,1.0/3);
cout<<fixed<<setprecision(2)<<r;
return 0;
}
这里空空如也
有帮助,赞一个