標題:
if...else
[打印本頁]
作者:
鄭繼威
時間:
2022-8-17 00:43
標題:
if...else
雙向判斷式語法
if (條件式):
程式區塊一
else:
程式區塊二
score=input("請輸入你的成績: ")
score=int(score)
if score>=60:
print("恭喜你!及格了!")
else:
print("不及格~斬!")
複製代碼
作者:
簡宗漢
時間:
2022-8-18 16:02
本帖最後由 簡宗漢 於 2022-8-19 10:45 編輯
english=int(input("請輸入你的英語成績"))
chinese=int(input("請輸入你的國語成績"))
math=int(input("請輸入你的數學成績"))
score=english+chinese+math
score2=score/3
score3=print("\n總分:%d 平均:%.0f"%(score,score2))
if score>=180 and score2>=60:
print("恭喜你及格!")
else:
print("恭喜你不及格!")
複製代碼
作者:
吳鎧茵
時間:
2022-8-19 08:59
本帖最後由 吳鎧茵 於 2022-8-19 10:31 編輯
score=input("請輸入你的成績:")
score=int(score)
if score>=60:
print("恭喜你!及格了!")
else:
print("不及格~斬!")
複製代碼
作者:
彭郁程
時間:
2022-8-19 09:07
score=input("請輸入你的成績:")
score=int(score)
if score>=60:
print("恭喜你!及格了!")
else:
print("不及格~斬!")
複製代碼
作者:
胡凰月
時間:
2022-8-19 10:34
score=input("請輸入你的成績:")
score=int(score)
if score>=60:
print("恭喜你!及格了!")
else:
print("不及格~斬!")
複製代碼
作者:
陳牧謙
時間:
2022-8-19 10:37
a=int(input("請輸入國文成績: "));
b=int(input("請輸入數學成績: "));
c=int(input("請輸入英文成績: "));
d=a+b+c
f=a+b+c/3
print("\n總分:%d 平均:%.2f"%(d,f))
if d<=60:
print("不及格,斬")
elif d<0:
print("錯誤")
elif d>100:
print("錯誤")
else:
print("及格!")
複製代碼
作者:
姜宏叡
時間:
2022-8-19 10:42
score=input("請輸入你的成績: ")
score=int(score)
if score>=60:
print(恭喜你!及格了!")
else:
print("不及格~")
複製代碼
作者:
吳俊頡
時間:
2022-8-19 10:45
a=int(input("請輸入你的成績:"))
if a>=60:
print("恭喜你,及格")
else:
print("不及格")
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2