题解列表

筛选

Python代码,大道至简

摘要:解题思路:注意事项:参考代码:while True:    n = list(map(int,input().split()))    if n[0] == 0:        exit(0)    ……

发工资咯!(python代码,思路清晰)

摘要:解题思路:注意事项:    数据需要横向输入参考代码:b = 0money = 0sum1 = 0sum2 = 0while True:             # 输入数据,必须要横向输入    a……

IP判断的一种解题Python

摘要:解题思路:注意事项:不知道为什么,有前导0的存在也提交正确参考代码:while True:    str1 = input()    list1 = list(str1.split('.&#3……

编写题解 1093: 字符逆序

摘要:参考代码:my_str = list(map(str, input()))for i in my_str[::-1]:    print(i, end="")                     ……