exercise003_商品折扣

林不肯先森發表於2018-07-10
# coding=utf-8
# 3:一家商場在降價促銷。如果購買金額50-100元(包含50元和100元)之間,會給10%的折扣,
# 如果購買金額大於100元會給20%折扣。
# 編寫一程式,詢問購買價格,再顯示出折扣(%10或20%)和最終價格

for num in range(0,10):
    price = int(raw_input("請輸入金額:"))
    if 50 <= price <= 100:
        print("給10%的折扣,還需支付{0}元".format(price*(1-0.1)))
    elif price > 100:
        print("給20%的折扣,還需支付{0}元".format(price*(1-0.2)))
    else:
        print("不滿足折扣金額,需支付{0}元".format(price*(1-0.0)))
請輸入金額:0
不滿足折扣金額,需支付0.0元
請輸入金額:22
不滿足折扣金額,需支付22.0元
請輸入金額:222
給20%的折扣,還需支付177.6元
請輸入金額:50
給10%的折扣,還需支付45.0元
請輸入金額:100
給10%的折扣,還需支付90.0元
請輸入金額:

相關文章