使用if-else语句实现快递收费系统
时间: 2024-01-14 12:20:31 浏览: 226
Windows Powershell IF-ELSEIF-ELSE 语句
以下是使用if-else语句实现快递收费系统的代码示例:
```python
d = input("请输入地区编号(华东地区01,华南地区02,华北地区03):")
height = float(input('请输入快递重量(kg):'))
if d == '01':
if height <= 2:
print("该收取费用:", height * 13)
else:
print("该收取费用:", height * 13 + (height - 2) * 3, '元')
elif d == '02':
if height <= 3:
print("该收取费用:", height * 12)
else:
print("该收取费用:", height * 12 + (height - 2) * 2, '元')
elif d == '03':
if height <= 3:
print("该收取费用:", height * 14)
else:
print("该收取费用:", height * 14 + (height - 2) * 4, '元')
```
阅读全文