Board logo

標題: if...else [打印本頁]

作者: 鄭繼威    時間: 2023-1-30 00:22     標題: if...else

雙向判斷式語法
if (條件式):
    程式區塊一
else:
    程式區塊二


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

作者: 莊硯羽    時間: 2023-1-30 15:47

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

作者: 劉奕劭    時間: 2023-1-30 15:47

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

作者: 李宗祐    時間: 2023-1-30 15:49

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

作者: 李允呈    時間: 2023-1-30 15:56

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





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2