標題:
if...else
[打印本頁]
作者:
鄭繼威
時間:
2023-7-7 19:34
標題:
if...else
雙向判斷式語法
if (條件式):
程式區塊一
else:
程式區塊二
score=input("請輸入你的成績: ")
score=int(score)
if score>=60:
print("恭喜你!及格了!")
else:
print("不及格~斬!")
複製代碼
作者:
歐陽霖
時間:
2023-7-10 15:43
englishscore=int(input("請輸入英文成績:"))
chinesescore=int(input("請輸入國文成績:"))
mathscore=int(input("請輸入數學成績:"))
totalscore=englishscore+chinesescore+mathscore
print("總分:",totalscore)
totalscore=totalscore/3
print("平均分數為%.2f"%totalscore)
if totalscore>=60:
print("及格!!")
else:
print("不及格!!")
複製代碼
作者:
董炫霆
時間:
2023-7-10 15:43
score=input("輸入成績:")
score=int(score)
if score>=60:
print("及格!")
else:
print("不及格!")
複製代碼
作者:
曾冠瑋
時間:
2023-7-10 15:44
if avg>60:
print("平均分數及格")
else:
print("平均分數不及格")
作者:
鄭繼威
時間:
2023-7-10 15:46
3
作者:
張育維
時間:
2023-7-10 15:47
本帖最後由 張育維 於 2023-7-10 15:51 編輯
k=input("Please enter Chinese score: ")
l=input("Please enter Math score: ")
m=input("Please enter English score: ")
print("Total= "+str(int(k)+int(l)+int(m)))
n=(int(k)+int(l)+int(m))/3
o="Average= %.2f"%n
print(o)
if float(o) or int(o)>=60:
print("You passed!")
else:
print("You didn't pass!")
複製代碼
作者:
方昱安
時間:
2023-7-10 15:48
score=int(input("成績是?"))
if score>=90:
print("及格了")
else:
print("廢物")
複製代碼
作者:
黃柏翰
時間:
2023-7-10 16:01
總分=input("輸入成績:")
總分=int(總分)
if 總分>60:
print("及格")
else:
print("不及格")
作者:
矯博宇
時間:
2023-8-2 13:44
a=float(input("your score:"))
if a>=60:
print("恭喜及格!")
else:
print("下次在加油吧...")
複製代碼
作者:
盧承新
時間:
2023-8-2 15:30
a=int(input("請輸入成績:"))
if a>=60:
print("及格")
else:
print("不及格")
複製代碼
作者:
高士涵
時間:
2023-8-2 15:30
score=int(input("請輸入成績:"))
if score>=60:
print("你及格了")
else:
print("不及格!")
複製代碼
作者:
鄧維成
時間:
2023-8-2 15:31
score=int(input("請輸入你的成績: "))
if score>=60:
print("及格了不用斬了")
else:
print("沒及格 斬!!!!!!!")
作者:
盧芷萱
時間:
2023-8-2 15:32
score=input("請輸入你的成績:")
score=int(score)
if score>=60:
print("恭喜及格")
else:
print("不及格")
複製代碼
作者:
鄭繼威
時間:
2023-8-2 15:35
6
作者:
李逢翔
時間:
2023-8-2 15:36
name=input("請輸入姓名:")
score=int(input("請輸入成績:"))
if score>60:
print(f"{name} 你及格了")
else:
print("哈哈!你不及格!")
複製代碼
作者:
呂宗晉
時間:
2023-8-2 15:36
score=input("請輸入你的成績: ")
score=int(score)
if score>=60:
print("恭喜你!及格了!")
else:
print("不及格~斬!")
複製代碼
作者:
張絜晰
時間:
2023-8-2 15:38
a=int(input("What's your score?"))
if a>=60:
print("及格")
else:
print("不及格")
複製代碼
作者:
陳珺
時間:
2023-8-2 15:42
a=int(input("成績="))
if 101>a>59:
print("好")
else:print("坏")
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2