標題:
if...elif...else
[打印本頁]
作者:
tonyh
時間:
2019-7-16 10:05
標題:
if...elif...else
本帖隱藏的內容需要回復才可以瀏覽
作者:
黃宇綸
時間:
2019-7-16 10:27
s=float(input("報上你的成績: "))
if(s>=90 and s<=100):
print("優等!")
elif(s>=80 and s<90):
print("甲等!")
elif(s>=70 and s<80):
print("乙等!")
elif(s>=60 and s<70):
print("丙等!")
elif(s>=0 and s<60):
print("不及格!")
else:
print("輸入錯誤!")
複製代碼
作者:
張彥承
時間:
2019-7-16 10:27
score= float(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("輸入錯誤!")
複製代碼
作者:
王禹恆
時間:
2019-7-16 10:29
score=input("輸入分數:")
score=float(score)
if(score>=90 and score<=100):
print("優等")
elif(score>=80 and score<=90):
print("甲等!")
elif(score>=70and score<=80):
print("乙等!")
elif(score>=60and score<=70):
print("丙等!")
elif(score>=0and score<=60):
print("不及格!")
else:
print("輸入錯誤")
複製代碼
作者:
孫紹普
時間:
2019-7-16 10:31
score=int(input("把你的成績喊出來!: "))
print(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("輸入錯誤!")
複製代碼
作者:
李宇澤
時間:
2019-7-16 10:31
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("輸入錯誤!")
複製代碼
作者:
曾博宇
時間:
2019-7-16 10:32
score=float(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("輸入錯誤")
複製代碼
作者:
林凱楓
時間:
2019-7-16 10:32
score=input("輸入分數:")
score=float(score)
if(score>=90 and score<=100):
print("優等")
elif(score>=80 and score<=90):
print("甲等!")
elif(score>=70and score<=80):
print("乙等!")
elif(score>=60and score<=70):
print("丙等!")
elif(score>=0and score<=60):
print("不及格!")
else:
print("輸入錯誤")
複製代碼
作者:
黃鋐粟
時間:
2019-7-16 10:33
score=float(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<60):
print ("不及格")
else:
print ("輸入錯誤")
作者:
王宥媗
時間:
2019-7-16 10:33
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("輸入錯誤!")
複製代碼
作者:
蔡沛倫
時間:
2019-7-16 10:36
score=input("輸入分數:")
score=float(score)
if(score>=90 and score<=100):
print("優等")
elif(score>=80 and score<=90):
print("甲等!")
elif(score>=70and score<=80):
print("乙等!")
elif(score>=60and score<=70):
print("丙等!")
elif(score>=0and score<=60):
print("不及格!")
else:
print("輸入錯誤")
複製代碼
作者:
王柏諺
時間:
2019-7-16 10:40
score=input("請輸入你的成績:")
score=float(score)
if(score>=90 and score<=100):
print("優等!")
if(score>=80 and score<=90):
print("甲等!")
if(score>=70 and score<=80):
print("乙等!")
if(score>=60 and score<=70):
print("丙等!")
if(score>=0 and score<=60):
print("不及格!")
else:
print("輸入錯誤!")
複製代碼
作者:
王銘鴻
時間:
2019-7-16 10:41
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("輸入錯誤!")
複製代碼
作者:
黃宇瑄
時間:
2019-7-16 10:44
s=float(input("報上你的成績: "))
if(s>=90 and s<=100):
print("優等")
elif(s>=80 and s<=89):
print("甲等")
elif(s>=70 and s<=79):
print("乙等")
elif(s>=60 and s<=69):
print("丙等")
elif(s>=0 and s<=59):
print("不及格")
else:
print("亂打")
複製代碼
作者:
穆玨諺
時間:
2019-7-16 10:44
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("輸入錯誤!")
複製代碼
作者:
穆宥臻
時間:
2019-7-16 10:45
score=input("請輸入分數:")
score=float(score)
if(score>=90 and score<=100):
print("優等")
elif(score>=80 and score<=90):
print("甲等!")
elif(score>=70and score<=80):
print("乙等!")
elif(score>=60and score<=70):
print("丙等!")
elif(score>=0and score<=60):
print("不及格!")
else:
print("輸入錯誤!")
複製代碼
作者:
楊子毅
時間:
2019-7-16 10:47
s=float(input("報上成績: "))
if(s>=90 and s<=100):
print("優等!")
elif(s>=80 and s<90):
print("甲等!")
elif(s>=70 and s<80):
print("乙等!")
elif(s>=60 and s<70):
print("丙等!")
elif(s>=0 and s<60):
print("不及格!")
else:
print("輸入錯誤!")
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2