请问《零基础入门学习python》(第二版)在哪儿呀找不到了
求助课后作业在这里:https://fishc.com.cn/forum.php?mod=forumdisplay&fid=360&filter=typeid&typeid=760 《零基础入门学习Python》-> https://fishc.com.cn/forum-243-1.html
《零基础入门学习Python》(最新版)-> https://fishc.com.cn/forum-360-1.html
我也找不到,请问在哪呢 profit = float(input("请输入今年的利润:"))
if profit <= 100000:
reward = profit * 0.1
elif 100000 < profit <= 200000:
reward = 100000 * 0.1 + (profit - 100000) * 0.075
elif 200000 < profit <= 400000:
reward = 100000 * 0.1 + 100000 * 0.075 + (profit - 200000) * 0.05
elif 400000 < profit <= 600000:
reward = 100000 * 0.1 + 100000 * 0.075 + 200000 * 0.05 + (profit - 400000) * 0.03
elif 600000 < profit <= 1000000:
reward = 100000 * 0.1 + 100000 * 0.075 + 200000 * 0.05 + 200000 * 0.03 + (profit - 600000) * 0.015
else:
reward = 100000 * 0.1 + 100000 * 0.075 + 200000 * 0.05 + 200000 * 0.03 + 400000 * 0.015 + (profit - 1000000) * 0.01
print("应该发放的奖金总数是:", reward, sep='')
为什么用的是float不是int
页:
[1]