小何同学呀 发表于 2023-4-6 12:35:08

请问《零基础入门学习python》(第二版)在哪儿呀找不到了

求助

isdkz 发表于 2023-4-6 12:36:21

课后作业在这里:https://fishc.com.cn/forum.php?mod=forumdisplay&fid=360&filter=typeid&typeid=760

小甲鱼 发表于 2023-4-6 15:31:42

《零基础入门学习Python》-> https://fishc.com.cn/forum-243-1.html

《零基础入门学习Python》(最新版)-> https://fishc.com.cn/forum-360-1.html

Dr.wu666888 发表于 2024-3-24 13:33:38

我也找不到,请问在哪呢

XBTHD 发表于 2024-3-25 10:23:44

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]
查看完整版本: 请问《零基础入门学习python》(第二版)在哪儿呀找不到了