返回列表 發帖

if...else

  1. score=input("請輸入你的成績: ")
  2. score=float(score)
  3. if(score>=60):
  4.     print("恭喜你!及格了!")
  5. else:
  6.     print("不及格~斬!")
複製代碼

本帖最後由 富溢 於 2022-1-27 01:10 編輯
  1. score=input("請輸入你的段考成績: ")
  2. score=float(score)
  3. if(score>=60):
  4.     print("恭喜你!及格了!")
  5. else:
  6.     print("不及格~給我去認真複習!")
複製代碼

TOP

  1. score=input("請輸入你的成績: ")
  2. score=float(score)
  3. if(score>=60):
  4.     print("及格了!")
  5. else:
  6.     print("不及格")
複製代碼

TOP

  1. score=input("請輸入你的成績: ")
  2. score=float(score)
  3. if(score>=60):
  4.     print("恭喜你!及格了!")
  5. else:
  6.     print("不及格~斬!")
複製代碼

TOP

  1. score=input("請輸入你的成績: ")
  2. score=float(score)
  3. if(score>=60):
  4.     print("恭喜你!及格了!")
  5. else:
  6.     print("不及格~斬!")
複製代碼

TOP

  1. score=input("請輸入你的成績:")
  2. score=float(score)
  3. if(score>=60):
  4. print("恭喜你及格了!")
  5. else:
  6.     print("不及格!")
複製代碼

TOP

  1. score=input("請輸入你的成績: ")
  2. score=float(score)
  3. if(score>=60):
  4.     print("恭喜你!及格了!")
  5. else:
  6.     print("不及格~斬!")
複製代碼

TOP

本帖最後由 胡孟涵 於 2022-1-27 08:50 編輯
  1. score=input("請輸入你的成績:")
  2. score=float(score)
  3. if(score>=60):
  4.     print("恭喜你!及格了!")

  5. else:
  6.    
  7.     print("不及格~斬!!!")
  8.    
複製代碼

TOP

  1. chinese_score=float(input("請輸入國文成績:"))
  2. english_score=float(input("請輸入英文成績:"))
  3. math_score=float(input("請輸入數學成績:"))

  4. sum=chinese_score+english_score+math_score
  5. avg=(chinese_score+english_score+math_score)/3

  6. print("總分:",sum,end=" ")
  7. print("平均:%.2f"%(avg))
  8. if (avg>=60):
  9.     print("過")
  10. else:
  11.     print("沒過")
複製代碼

TOP

  1. score=input("請輸入你的成績: ")
  2. score=float(score)
  3. if(score>=60):
  4.     print("恭喜你!及格了!")
  5. else:
  6.     print("不及格~斬!")
複製代碼

TOP

  1. score=float(input("請輸入成績:"))
  2. if score>=90 and>=100:
  3.     print("優")   
  4. elif score>=80 and>90:
  5.     print("甲")
  6. elif score>=70 and>80:
  7.     print("乙")
  8. elif  score>=60 and>70:
  9.     print("丙")
  10. elif  score>=0 and>:60
  11.     print("不及格")
  12. else
  13.     print("輸入錯誤~斬")
複製代碼

TOP

返回列表