题解 2791: 计算邮资

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

python方法解决

摘要:解题思路:注意事项:参考代码:import mathl = input().split()s = 0if l[1] == 'y':    s = 5a = int(l[0])if a ……

计算邮资python版

摘要:解题思路:注意事项:参考代码:import mathwhile True:    try:        base = 8        t, q = input().strip().split() ……

2791: 计算邮资

摘要:解题思路:注意事项:参考代码:a, b = input().strip().split()a = int(a) ; b = str(b)    # 这里的b转换类型只是为了增加程序可读性,可以不用转换……