標題:
if...elif...else
[打印本頁]
作者:
鄭繼威
時間:
2022-8-17 00:44
標題:
if...elif...else
本帖最後由 鄭繼威 於 2022-8-19 11:05 編輯
多向判斷式語法
if (條件式一) :
程式區塊一
elif (條件式二):
程式區塊二
elif (條件式三):
程式區塊三
.........
else:
else的程式區塊
[
補充
]
if... 只能有一個(放在第一個)
elif... 可以很多個(放在中間)
else 只能有一個(放在最後一個)
score=int(input("請輸入你的成績: "))
if score>=90 and score<=100:
print("優等!")
elif score>=80 and score<90:
print("甲等!")
elif score>=70 and score<80:
print("乙等!")
elif score>=60 and score<70:
print("丙等!")
elif score>=0 and score<60:
print("不及格!")
else:
print("輸入錯誤!")
複製代碼
score=int(input("請輸入你的成績: "))
if score>100:
print("輸入錯誤!")
elif score>=90:
print("優等!")
elif score>=80:
print("甲等!")
elif score>=70:
print("乙等!")
elif score>=60:
print("丙等!")
elif score>=0:
print("不及格!")
else:
print("輸入錯誤!")
複製代碼
作者:
彭郁程
時間:
2022-8-18 16:02
本帖最後由 彭郁程 於 2022-8-19 10:34 編輯
1.
score=int(input("請輸入你的成績"))
print("你的成績為",score,sep="")
if (score<60) :
print("不及格")
elif(score>=60 and score<=100):
print("及格!")
else:
print("無效!最高分數為100!")
複製代碼
2.
# -*- coding: utf-8 -*-
"""
Created on Fri Aug 19 10:28:38 2022
@author: student
"""
score=int(input("請輸入你的成績: "))
if score>=90 and score<=100:
print("優等!")
elif score>=80 and score<90:
print("甲等!")
elif score>=70 and score<80:
print("乙等!")
elif score>=60 and score<70:
print("丙等!")
elif score>=0 and score<60:
print("不及格!")
else:
print("輸入錯誤!")
複製代碼
3.
a=int(input("請輸入國語成績 "))
b=int(input("請輸入英文成績: "))
c=int(input("請輸入數學成績: "))
sum=a+b+c
avgr=sum/3
print("總分%d平均:%.2f"%(sum,avgr))
if avgr>=90 and avgr<=100:
print("優等!")
elif avgr>=80 and avgr<90:
print("甲等!")
elif avgr>=70 and avgr<80:
print("乙等!")
elif avgr>=60 and avgr<70:
print("丙等!")
elif avgr>=0 and avgr<60:
print("不及格!")
else:
print("輸入錯誤!")
複製代碼
作者:
吳鎧茵
時間:
2022-8-19 10:43
score=int(input("請輸入你的成績: "))
if score>100:
print("輸入錯誤!")
elif score>=90:
print("優等!")
elif score>=80:
print("甲等!")
elif score>=70:
print("乙等!")
elif score>=60:
print("丙等!")
elif score>=0:
print("不及格!")
else:
print("輸入錯誤!")
複製代碼
作者:
鄭繼威
時間:
2022-8-19 11:04
a=int(input("請輸入你的成績:"))
#100超棒
if a==100:
print("超棒的")
#90~99
elif a>=90 and a<=99:
print("優等")
#80~89
elif a>=80 and a<=89:
print("甲等")
#70~79
elif a>=70 and a<=79:
print("乙等")
#60~69
elif a>=60 and a<=69:
print("丙等")
#60以下0以上
elif a>=0 and a<=59:
print("不及格")
else:
print("輸入錯誤")
複製代碼
作者:
胡凰月
時間:
2022-8-19 11:08
score=int(input("請輸入你的成績:"))
if score>=90 and score<=100:
print("優等!")
elif score>=80 and score<90:
print("甲等!")
elif score>=70 and score<80:
print("乙等!")
elif score>=60 and score<70:
print("丙等!")
elif score>=0 and score<60:
print("不及格!")
else:
print("輸入錯誤!")
複製代碼
作者:
姜宏叡
時間:
2022-8-19 11:09
本帖最後由 姜宏叡 於 2022-8-19 11:13 編輯
score=int(input("請輸入你的成績: "))
if score>=90 and score<=100:
print("優等!")
elif score>=80 and score<90:
print("甲等!")
elif score>=70 and score<80:
print("乙等!")
elif score>=60 and score<70:
print("丙等!")
elif score>=0 and score<60:
print("不及格!")
else:
print("輸入錯誤")
複製代碼
作者:
陳牧謙
時間:
2022-8-19 11:11
score=int(input("請輸入你的成績: "))
if score==100:
print("滿分")
elif score<=99 and score>=90:
print("優等")
elif score<=89 and score>=80:
print("甲等")
elif score<=79 and score>=70:
print("乙等")
elif score<=69 and score>=60:
print("丙格")
elif score<=59 and score>=0:
print("不及格")
else:
print("輸入錯誤")
複製代碼
作者:
吳俊頡
時間:
2022-8-19 11:12
a=int(input("輸入你的成績: "))
if a>=90 and a<=100:
print("優")
elif a>=80 and a<=89:
print("甲")
elif a>=70 and a<=79:
print("乙")
elif a>=60 and a<=69:
print("丙")
elif a>=0 and a<=59:
print("不及格")
else:
print("錯誤")
複製代碼
作者:
吳鎧茵
時間:
2022-8-19 11:14
score=int(input("請輸入你的成績: "))
if score>=90 and score<=100
if a==100:
print("超棒的")
elif a>=90 and a<=99:
print("優等")
elif a>=80 and a<=89:
print("甲等")
elif a>=70 and a<=79:
print("乙等")
elif a>=60 and a<=69:
print("丙等")
elif a>=0 and a<=59:
print("不及格")
else:
print("輸入錯誤"):
複製代碼
作者:
簡宗漢
時間:
2022-8-19 11:41
score=int(input("請輸入成績: "))
if score>=90 and score<=100
if a==100:
print("讚")
elif a>=90 and a<=99:
print("優等")
elif a>=80 and a<=89:
print("甲等")
elif a>=70 and a<=79:
print("乙等")
elif a>=60 and a<=69:
print("丙等")
elif a>=0 and a<=59:
print("不及格")
else:
print("輸入錯誤"):
複製代碼
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2