Run ID:657

提交时间:2023-01-13 14:52:35

#include<iostream> using namespace std; int main(){ double pi=3.14,t; int h,r,n=0; cin>>h>>r; t=pi*r*r*h; while(20*1000>n*t){ n++; } cout<<n; return 0; }