使用if语句实现输入购货金额 输出实际付款金额 购货折扣率如下 金额<=500 不打折500小于购货金额<=1900折大于1800折
时间: 2024-05-25 22:16:32 浏览: 138
c语言if语句实例_C语言if语句和switch语句实例_If..._
1,输入购货金额:
amount = float(input("请输入购货金额:"))
2,判断购货折扣率:
if amount <= 500:
discount = 1
elif amount <= 1900:
discount = 0.9
else:
discount = 0.8
3,计算实际付款金额:
payable = amount * discount
4,输出实际付款金额:
print("实际付款金额为:", payable)
阅读全文