题解列表

筛选

1866: 三位数反转

摘要:解题思路:注意事项:参考代码:while True:     try:         n = input()         print(n[::-1])     except:    &nb

1859: 与2无关的数

摘要:解题思路:注意事项:参考代码:def num(x):     s = 0     if x%2==0:         s += 1     st = str(x)     

1856: 最小三个数

摘要:解题思路:注意事项:参考代码:n = int(input()) m = list(map(int,input().split())) m.sort() for i in range(3):  ……

1848: 求输入数据绝对值

摘要:解题思路:注意事项:参考代码:while True:     try:         x = input()         print('%.2f'%abs(float(x)……