题解 | #网购#

网购

https://www.nowcoder.com/practice/5d7dfd405e5f4e4fbfdff6862c46b751

price,month,day,ticket = map(float, input().split(' '))
if int(month)==11:
    cost = price*0.7 - ticket*50
    if cost<0:
        cost = 0
    print(f'{cost:.2f}')
else:          #注:输入日期保证只有“双11”和“双12”。
    cost = price*0.8 - ticket*50
    if cost<0:
        cost = 0
    print(f'{cost:.2f}')
全部评论

相关推荐

点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务