编写题解 2771:大象喝水,python超简单
摘要:解题思路:注意事项:输出时舍去多余的0因为会估算参考代码:h,r = map(int,input().split()) #读取高度和半径 pi = 3.14159v_1 = pi * r ** 2……
2771: 大象喝水
摘要:解题思路:注意事项:参考代码:import math h,r = map(int,input().strip().split()) v = math.pi * h * r**2 print(mat……