Run ID:144313
提交时间:2026-01-21 19:01:26
import math print("请输入桶的高度和半径") h,r=map(int,input().split()) pi=3.14 v=pi*r*r*h n=20000/v if 20000%v>1e-9: count=math.ceil(20000/v) print(count) else: print(n)