Run ID:97800

提交时间:2024-11-16 16:15:17

#include<iostream> #include<cmath> using namespace std; int main() { int h,r,n; double v; cin>>h>>r; v=3.14*r*r*h; n=20/v*1000+1; cout<<n<<endl; return 0; }