返回列表 發帖
  1. score=input("Enter Your Score")
  2. score=float(score)
  3. if(score>=90 and score <=100):
  4.     print("A-tier")
  5. elif(score>=80 and score <=90):
  6.     print("B-tier")
  7. elif(score>=70 and score <=80):
  8.     print("c-teir")
  9. elif(score>=60 and score <=70):
  10.     print("D-tier")
  11. elif(score>=0 and score <60):
  12.     print("ur bad")
  13. else:
  14.     print("pls type like a normal human being ")   
複製代碼

TOP

返回列表