# 判斷東華的GPA計算程式 ```=python score = float(input("請輸入你的百分計分法的分數: ")) if score >= 90: print('Grade is: A+') elif score >= 85: print('Grade is: A') elif score >= 80: print('Grade is: A-') elif score >= 77: print('Grade is: B+') elif score >= 73: print('Grade is: B') elif score >= 70: print('Grade is: B-') elif score >= 67: print('Grade is: C+') elif score >= 63: print('Grade is: C') elif score >= 60: print('Grade is: C-') elif score >= 50: print('Grade is: D') elif 0 <= score < 50: print('Grade is: E') else: print('你輸入錯東西了') ``` 
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up