题目:B2029,大象喝水 代码:
#include<bits/stdc++.h> using namespace std; int h,r,a; int main(){ cin>>h>>r; a=20000/(3.14159*r*r*h)+1; cout<<a; return 0; }