標題:
if...elif...else
[打印本頁]
作者:
tonyh
時間:
2020-7-25 13:47
標題:
if...elif...else
本帖隱藏的內容需要回復才可以瀏覽
作者:
蔡幸融
時間:
2020-7-25 14:23
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("輸入錯誤!")
複製代碼
作者:
林侑成
時間:
2020-9-12 13:17
score=float(input("your 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("wrong")
複製代碼
作者:
吳孟修
時間:
2020-9-12 13:19
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("輸入錯誤!")
複製代碼
作者:
洪寬瀧
時間:
2020-9-12 13:20
score=float(input("請輸入你的成績:"))
if(score>=90):
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-9-12 13:22
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("error")
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2