返回列表 發帖

if...else

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


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

  1. englishscore=int(input("請輸入英文成績:"))
  2. chinesescore=int(input("請輸入國文成績:"))
  3. mathscore=int(input("請輸入數學成績:"))
  4. totalscore=englishscore+chinesescore+mathscore
  5. print("總分:",totalscore)
  6. totalscore=totalscore/3
  7. print("平均分數為%.2f"%totalscore)
  8. if totalscore>=60:
  9.     print("及格!!")
  10. else:
  11.     print("不及格!!")
複製代碼

TOP

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

TOP

if avg>60:
    print("平均分數及格")
else:
    print("平均分數不及格")

TOP

3

TOP

本帖最後由 張育維 於 2023-7-10 15:51 編輯
  1. k=input("Please enter Chinese score: ")
  2. l=input("Please enter Math score: ")
  3. m=input("Please enter English score: ")
  4. print("Total= "+str(int(k)+int(l)+int(m)))
  5. n=(int(k)+int(l)+int(m))/3
  6. o="Average= %.2f"%n
  7. print(o)
  8. if float(o) or int(o)>=60:
  9.     print("You passed!")
  10. else:
  11.     print("You didn't pass!")
複製代碼

TOP

  1. score=int(input("成績是?"))

  2. if score>=90:
  3.     print("及格了")
  4. else:
  5.     print("廢物")
複製代碼

TOP

總分=input("輸入成績:")
總分=int(總分)
if 總分>60:
    print("及格")
else:
    print("不及格")

TOP

  1. a=float(input("your score:"))
  2. if a>=60:
  3.   print("恭喜及格!")
  4. else:
  5.   print("下次在加油吧...")
複製代碼

TOP

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

TOP

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

TOP

score=int(input("請輸入你的成績: "))
if score>=60:
    print("及格了不用斬了")
else:
    print("沒及格 斬!!!!!!!")

TOP

  1. score=input("請輸入你的成績:")
  2. score=int(score)

  3. if score>=60:
  4.     print("恭喜及格")
  5. else:
  6.     print("不及格")
複製代碼

TOP

6

TOP

  1. name=input("請輸入姓名:")
  2. score=int(input("請輸入成績:"))
  3. if  score>60:
  4.     print(f"{name} 你及格了")
  5. else:
  6.     print("哈哈!你不及格!")
複製代碼

TOP

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

TOP

  1. a=int(input("What's your score?"))
  2. if a>=60:
  3.     print("及格")
  4. else:
  5.     print("不及格")
複製代碼
Attention Seeker </3

TOP

a=int(input("成績="))
if 101>a>59:
    print("好")
   
else:print("坏")

TOP

返回列表