Run ID:146080
提交时间:2026-01-25 20:35:10
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ double h,r,s,a; cin>>h>>r; s=(20*1000)/3.14*r*r*h; cout<<int(s); return 0; }