Board logo

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

作者: 鄭繼威    時間: 2023-7-7 19:34     標題: if...else

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


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

作者: 歐陽霖    時間: 2023-7-10 15:43

  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("不及格!!")
複製代碼

作者: 董炫霆    時間: 2023-7-10 15:43

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

作者: 曾冠瑋    時間: 2023-7-10 15:44

if avg>60:
    print("平均分數及格")
else:
    print("平均分數不及格")
作者: 鄭繼威    時間: 2023-7-10 15:46

3
作者: 張育維    時間: 2023-7-10 15:47

本帖最後由 張育維 於 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!")
複製代碼

作者: 方昱安    時間: 2023-7-10 15:48

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

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

作者: 黃柏翰    時間: 2023-7-10 16:01

總分=input("輸入成績:")
總分=int(總分)
if 總分>60:
    print("及格")
else:
    print("不及格")
作者: 矯博宇    時間: 2023-8-2 13:44

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

作者: 盧承新    時間: 2023-8-2 15:30

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

作者: 高士涵    時間: 2023-8-2 15:30

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

作者: 鄧維成    時間: 2023-8-2 15:31

score=int(input("請輸入你的成績: "))
if score>=60:
    print("及格了不用斬了")
else:
    print("沒及格 斬!!!!!!!")
作者: 盧芷萱    時間: 2023-8-2 15:32

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

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

作者: 鄭繼威    時間: 2023-8-2 15:35

6
作者: 李逢翔    時間: 2023-8-2 15:36

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

作者: 呂宗晉    時間: 2023-8-2 15:36

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

作者: 張絜晰    時間: 2023-8-2 15:38

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

作者: 陳珺    時間: 2023-8-2 15:42

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




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