asasbed123 發表於 2022-1-26 12:13:37

Python 程式寫作

媽媽和小明達成協議:
只要期中考80分以上 可以拿到100元 若高於90分每多1分可以多拿2元 98分以上多1分再多給5元 請幫媽媽設計獎金計算程式 請使用if敘述

拜託了!!

a012346790 發表於 2022-1-26 14:20:06

如果不需要函數的話:

ifurther 發表於 2023-10-28 21:32:26

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]
查看完整版本: Python 程式寫作