print("you dumb jus like hudson he is dumb dumb -5 iq")
else:
print("that aint no score you hudson?!")
複製代碼
作者: 林婕瀅 時間: 2020-7-28 09:51
score:float(input("請輸入你的成績"))
if(score>=90 and score<=100):
print("優等")
elfe(score>=80 and score<90)
print("甲等")
elfe(score>=70 and score<80)
print("乙等")
elfe(score>=60 and score<70)
print("丙等")
elfe(score>100 and score<0)
print("輸入錯誤")
else
print("不及格")
複製代碼
作者: 蔡鈞峰 時間: 2020-7-28 09:51
a=int(input("請輸入成績:"))
if a>=90 and a<=100:
print("優等")
elif a>=80 and a<90:
print("甲等")
elif a>=70 and a<80:
print("乙等")
elif a>=60 and a<70:
print("丙等")
elif a>=0 and a<60:
print("不及格")
else:
print("輸入錯誤...斬!")
複製代碼
作者: 楊書華 時間: 2020-7-28 09:53
score=float(input("Please Enter Your Score: "))
if(score>100 or score<0):
print("Invalid Entry! Please Try Again!")
elif(score<=100 and score>96):
print("A+! Well Done!")
elif(score<=96 and score>=93):
print("A.. You could do better next time!")
elif(score<=93 and score>=90):
print("You have an A-.You are no longer a qualified Asian!")
elif(score<90 and score>86):
print("B+")
elif(score<=86 and score>82):
print("B")
elif(score<=82 and score>=80):
print("B-")
elif(score<80 and score>=77):
print("C+! How dare you? This Score should not have existed in my class!")
elif(score<77 and score>=73):
print("C! Did you even try?")
elif(score<73 and score>=70):
print("C-")
elif(score<70 and score>=67):
print("D+! You are such a faliure!")
elif(score<67 and score>=63):
print("D")
elif(score<63 and score>=60):
print("D-...I have no hope in you! You are not going to be successful in the future! You can't even read!")
else:
print("F!!!Get Out of my Room NOW! Get OUT! You Idiot!")
複製代碼
作者: 黃明晧 時間: 2020-7-28 09:55
score=float(input("Enter Your Score"))
if(score<=90 and score>=100):
print("S-Tier")
elif(score<=80 and score>=90):
print("A-Tier")
elif(score<=70 and score>=80):
print("B-Tier")
elif(score<=60 and score>=70):
print("D-Tier")
elif(score<=50 and score>=60):
print("E-Tier")
elif(score<=0 and score>=50):
print("F-Tier")作者: 黃家穎 時間: 2020-7-28 09:56