题解 1173: 计算球体积

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

计算球体积

摘要:解题思路:注意事项:参考代码:import mathpi=math.pi                 //导入库while True:                &n

计算球的体积(Python)

摘要:解题思路:注意事项:参考代码:import math pi = math.pi while True:         try:         r = float(input()) ……

1173: 计算球体积

摘要:解题思路:注意事项:参考代码:import mathwhile True:    try:            r = float(input())        pi = math.pi     ……

1173一行解(Python)

摘要:解题思路:注意事项:参考代码:import mathimport sysfor line in sys.stdin:print('{:.2f}'.format((4/3)*math.p……

编写题解 1173: 计算球体积

摘要:解题思路:注意事项:参考代码:while True:     try:         r=float(input())         print('%.3f'%((4/3)*……