easiest
2024-07-19 12:23:08
发布于:上海
3阅读
0回复
0点赞
#include<iostream>
#include<cmath>
using namespace std;
typedef double dd;
const dd PI=3.14159;
dd h,r;
dd v;
dd t;
int main(){
cin>>h>>r;
v=PI*r*r*h;
t=20000/v;
cout<<ceil(t);
}
这里空空如也
有帮助,赞一个