Python 程式寫作
媽媽和小明達成協議:只要期中考80分以上 可以拿到100元 若高於90分每多1分可以多拿2元 98分以上多1分再多給5元 請幫媽媽設計獎金計算程式 請使用if敘述
拜託了!! 如果不需要函數的話:
Grad 是分數if Grad > 80:
Money = 100
if (Bolus := Grad - 98) and Bolus >= 0:
print( Money + Bolus * 5)
elif (Bolus := Grad - 90) and Bolus >= 0:
print( Money + Bolus * 2)
else:
print( Money)
else:
print( 'No moyey')
頁:
[1]