题解 | #球的表面积#
球的表面积
https://www.nowcoder.com/practice/7a5e2f1ed2594e38bad804323a775c93
import math i = 0 my_list = [1, 2, 4, 9, 10, 13] while i < len(my_list): V = 4 * math.pi * my_list[i] * my_list[i] print("{:.2f}".format(V)) i += 1
球的表面积
https://www.nowcoder.com/practice/7a5e2f1ed2594e38bad804323a775c93
import math i = 0 my_list = [1, 2, 4, 9, 10, 13] while i < len(my_list): V = 4 * math.pi * my_list[i] * my_list[i] print("{:.2f}".format(V)) i += 1
相关推荐