题解列表

筛选

2771: 大象喝水

摘要:解题思路:注意事项:参考代码:import math  h,r = map(int,input().strip().split())  v = math.pi * h * r**2 print(mat……

1866: 三位数反转

摘要:解题思路:注意事项:参考代码:while True:    try:        a = int(input())        b = a // 100        s = (a - b * 1……

1173: 计算球体积

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

两行代码完成

摘要:解题思路:注意事项:参考代码:x=input()print(x[::-1])#使用列表切片的方法直接倒序输出……

不重要的标题

摘要:解题思路:注意事项:参考代码:def getNum():    arr = []    line = int(input())    for i in range(line):        s = ……