標題:
if...elif...else
[打印本頁]
作者:
鄭繼威
時間:
2023-1-30 14:00
標題:
if...elif...else
多向判斷式語法
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("輸入錯誤!")
複製代碼
作者:
李允呈
時間:
2023-1-30 15:53
t=int(input("請輸入你的成績: "))
if t<=100 and t>=90:
print("優等!")
elif t<=89 and t>=80:
print("甲等!")
elif t<=79 and t>=70:
print("乙等!")
elif t<=69 and t>=60:
print("丙等!")
elif t<=59 and t>=0:
print("丁等!")
else :
print("輸入格式錯誤")
複製代碼
作者:
莊硯羽
時間:
2023-1-30 15:55
score=int(input("請輸入你的成績:"))
score=int(score)
if score>=95:
print("恭喜你!及格了!超棒!")
elif score<=94:
print("再加油!你可以的!")
else:
print("輸入錯誤")
複製代碼
作者:
劉奕劭
時間:
2023-1-30 15:56
score=int(input("請輸入你的成績:"))
score=int(score)
if score>=90 <100:
print("優")
elif score>=80 <90:
print("甲")
elif score>=70 <80:
print("乙")
elif score>=60 <70:
print("丙")
else:print("不及格")
複製代碼
作者:
李宗祐
時間:
2023-1-30 15:56
score=int(input("請輸入你的成績:"))
if score>=90 and score<=100:
print("優等")
if score>=80 and score<=89:
print("甲等")
if score>=70 and score<=79:
print("乙等")
if score>=60 and score<=69:
print("丙等")
else:
print("輸入錯誤!")
複製代碼
作者:
劉奕劭
時間:
2023-1-30 16:08
score=int(input("請輸入你的成績:"))
score=int(score)
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<60 and score>=0:
print("不及格")
else:print("輸入錯誤")
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2