题解列表

筛选

1118: Tom数-题解(python)

摘要:解题思路:注意事项:参考代码:while True:    a = input()    l = []    for i in a:        l.append(int(i))    m = su……