python方法解决 摘要:解题思路:注意事项:参考代码:import mathl = input().split()s = 0if l[1] == 'y': s = 5a = int(l[0])if a …… 题解列表 2024年07月28日 0 点赞 0 评论 152 浏览 评分:0.0
2791: 计算邮资 摘要:解题思路:注意事项:参考代码:a, b = input().strip().split()a = int(a) ; b = str(b) # 这里的b转换类型只是为了增加程序可读性,可以不用转换…… 题解列表 2022年12月04日 0 点赞 0 评论 310 浏览 评分:8.0
编写题解 2791: 计算邮资python 摘要:参考代码:r, s = input().split() r = int(r) money = 8 if r > 1000: money += (r-1000)//500*4 …… 题解列表 2024年03月06日 0 点赞 0 评论 217 浏览 评分:9.9
计算邮资python版 摘要:解题思路:注意事项:参考代码:import mathwhile True: try: base = 8 t, q = input().strip().split() …… 题解列表 2024年02月03日 0 点赞 0 评论 174 浏览 评分:9.9