標題:
if...else
[打印本頁]
作者:
鄭繼威
時間:
2023-1-30 00:22
標題:
if...else
雙向判斷式語法
if (條件式):
程式區塊一
else:
程式區塊二
score=input("請輸入你的成績: ")
score=int(score)
if score>=60:
print("恭喜你!及格了!")
else:
print("不及格~斬!")
複製代碼
作者:
莊硯羽
時間:
2023-1-30 15:47
score=int(input("請輸入你的成績:"))
score=int(score)
if score>=60:
print("恭喜你!及格了!")
else:
print("再加油,沒有及格")
複製代碼
作者:
劉奕劭
時間:
2023-1-30 15:47
score=int(input("請輸入你的成績:"))
score=int(score)
if score>=60:
print("及格")
else:
print("不及格")
複製代碼
作者:
李宗祐
時間:
2023-1-30 15:49
score=input("請輸入你的成績:")
score=int(score)
if score>60:
print("及格了")
if score<60:
print("不及格")
複製代碼
作者:
李允呈
時間:
2023-1-30 15:56
s=int(input("請輸入你的成績: "))
if s>=60:
print("恭喜你!及格了!")
else :
print("不及格~斬!")
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2