返回列表 發帖
  1. # -*- coding: utf-8 -*-

  2. score=int(input("請輸入分數"))
  3. if(score>=60):
  4.     print("及格")
  5. else:
  6.     print("不及格")
複製代碼

TOP

返回列表