返回列表 發帖

if...else

本帖最後由 鄭繼威 於 2022-7-19 10:24 編輯

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


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

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

TOP

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

TOP

  1. # -*- coding: utf-8 -*-
  2. """
  3. Spyder Editor

  4. This is a temporary script file.
  5. """
  6. score=input("請輸入你的成績: ")
  7. score=int(score)
  8. if score>=60:
  9.     print("恭喜你")
  10. else:
  11.     print("不及格")
複製代碼

TOP

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

TOP

本帖最後由 陳羨芮 於 2022-7-19 10:36 編輯
  1. a=float(input("請輸入成績:"))
  2. print(f"您輸入的成績是{a}")
  3. if(a>=60):
  4.     print("及格及格及格,萬歲萬歲萬歲!!!!!")
  5. else:
  6.     print("可惜可惜可惜,沒有及格,可喜可恨!!!!!!!!!!")
複製代碼

TOP

  1. score=int(input("請輸入你的成績:"))
  2. print(f"你的成績為:{score}")
  3. if  score>=60:
  4.     print("恭喜你,你有及格喔!!")
  5. else:
  6.     print("你沒及格,給我回去讀書!!")
複製代碼

TOP

返回列表