標題:
if...elif...else
[打印本頁]
作者:
陳品肇
時間:
2020-2-2 08:59
標題:
if...elif...else
本帖最後由 陳品肇 於 2020-2-2 09:58 編輯
[attach]8360[/attach]
90~100 優等
80~89 甲等
70~79 乙等
60~69 丙等
0~59 不及格
其餘輸入錯誤!!
本帖隱藏的內容需要回復才可以瀏覽
作者:
張鈞堯
時間:
2020-2-2 10:02
a=int(input("請輸入成績:"))
if(100>=a>=90):
print("優等")
elif(90>a>=80):
print("甲等")
elif(80>a>=70):
print("乙等")
elif(70>a>=60):
print("丙等")
elif(0<=a<60):
print("不及格")
else:
print("輸入有誤")
複製代碼
作者:
李穎俊
時間:
2020-2-2 10:03
score=input("請輸入你的成績: ")
score=float(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>=0 and score<60):
print("不及格!")
else:
print("輸入錯誤!")
複製代碼
作者:
陳沛頤
時間:
2020-2-2 10:04
score=int(input("請輸入成績:"))
if(score<=100 and score>=90):
print("優等!")
elif(score<90 and score>=80):
print("甲等!")
elif(score<80 and score>=70):
print("乙等!")
elif(score<70 and score>=60):
print("丙等!")
elif(score<60 and score>=0):
print("不及格!")
else:
print("輸入錯誤!")
複製代碼
作者:
陳頡鴻
時間:
2020-2-2 10:04
a=int(input("請輸入成績: "))
if(a<=100 and a>=90):
print("優等")
elif(a<90 and a>=80):
print("甲等")
elif(a<=79 and a>=60):
print("乙等")
elif(a<60 and a>=0):
print("不及格")
else:
print("輸入錯誤!")
複製代碼
作者:
曾柏忻
時間:
2020-2-2 10:06
score=int(input("請輸入你的成績"))
if(score>=90 and score<=100 ):
print("優等!")
elif(score>=80 and score<89 ):
print("甲等")
elif(score>=70 and score<79):
print("乙等")
elif(score>=60 and score<69):
print("丙等")
elif(score<=60 and score>0 ):
print("不及格")
else:
print("輸入錯誤")
複製代碼
作者:
林依玟
時間:
2020-2-2 10:08
score=int(input("請輸入你的成績:"))
if(score>=90 and score<=100 ):
print("優等!")
elif(score>=80 and score<89 ):
print("甲等")
elif(score>=70 and score<79):
print("乙等")
elif(score>=60 and score<69):
print("丙等")
elif(score<=60 and score>0 ):
print("不及格")
else:
print("輸入錯誤")
複製代碼
作者:
黃紹恩
時間:
2020-2-2 10: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("輸入錯誤!")
複製代碼
作者:
黃柏叡
時間:
2020-2-2 10:10
# -*- coding: utf-8 -*-
score=int(input("請輸入分數"))
score=float(score)
if(score<=100 and score>=90):
print("優等")
elif(score<90 and score>=80):
print("甲等")
elif(score<80 and score>=70):
print("乙等")
elif(score<70 and score>=60):
print("丙等")
elif(score<60 and score>=0):
print("不及格")
else:
print("輸入錯誤")
複製代碼
作者:
許雅棟
時間:
2020-2-2 10:10
score=int(input("請輸入你的成績"))
if(score<=100 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<=60 and score>=0):
print("你不及格")
else:
print("輸入成績有誤")
複製代碼
作者:
傅英哲
時間:
2020-2-2 10:10
score=int(input("請輸入你成績: "))
if(score>=90 and score<=100):
print("優等!")
elif(score>=80 and score<=89):
print("甲等!")
elif(score>=70 and score<=79):
print("乙等!")
elif(score>=60 and score<=69):
print("丙等!")
elif(score>=0 and score<=59):
print("不及格!")
else:
print("錯誤")
複製代碼
作者:
曾顗文
時間:
2020-2-2 10:11
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("輸入錯誤!")
複製代碼
作者:
傅品翰
時間:
2020-2-2 10:13
score=int(input("請輸入你的成績: "))
if(score>=90 and score<=100):
print("優等")
elif(score>=80 and score<90):
print("甲等")
elif(score>=60 and score<70):
print("丙等")
elif(score>=70 and score<80):
print("乙等")
elif(score>=0 and score<60):
print("不及格")
else:
print("輸入錯誤")
複製代碼
作者:
黃紹綸
時間:
2020-2-2 10:15
# -*- coding: utf-8 -*-
"""
Spyder Editor
This is a temporary script file.
"""
score=input("請輸入你的成績:")
score=float(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>=0 and score<=60):print("不及格!")
else:print("輸入錯誤")
複製代碼
作者:
林奇陞
時間:
2020-2-2 10:20
score =int(input("請輸入分數:"))
if(score>=90and 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("輸入錯誤")
複製代碼
作者:
潘堉恩
時間:
2020-2-2 10:40
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("輸入錯誤!")
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2