Board logo

標題: if...else [打印本頁]

作者: tonyh    時間: 2019-7-16 09:16     標題: if...else

本帖最後由 tonyh 於 2019-7-16 10:09 編輯



>  大於
<  小於
== 等於
>= 大於或等於
<= 小於或等於
!= 不等於


本帖隱藏的內容需要回復才可以瀏覽

作者: 張彥承    時間: 2019-7-16 09:39

  1. score=input("請輸入你的成績:")
  2. score=float(score)
  3. if(score>=60):
  4.    print("及格!")
  5. else:
  6.    print("不及格,斬!")   
複製代碼

作者: 王宥媗    時間: 2019-7-16 09:42

  1. score=input("報上你的成績: ")
  2. score=float(score)
  3. if(score>60):
  4.     print("恭喜你!及格了!")
  5. else:
  6.     print("不及格...斬!")
複製代碼

作者: 蔡沛倫    時間: 2019-7-16 09:43

  1. score=input("報上你的成績: ")
  2. score=float(score)
  3. if(score>60):
  4.     print("恭喜你!及格了!")
  5. else:
  6.     print("不及格...斬!")
複製代碼

作者: 孫紹普    時間: 2019-7-16 09:43

  1. score=int(input("把你的成績喊出來!: "))
  2. print(score)
  3. if(score>=60):
  4.     print("切!竟然及格了")   
  5. else:
  6.     print("哈哈哈!不及格了")   
複製代碼

作者: 穆玨諺    時間: 2019-7-16 09:44

  1. score=input("請輸入你的成績:")
  2. score=float(score)
  3. if(score>=60):
  4.    print("及格      讚讚讚讚讚讚讚讚讚讚讚讚!")
  5. else:
  6.    print("不及格,斬!")   
複製代碼

作者: 穆宥臻    時間: 2019-7-16 09:46

  1. score=input("請輸入你的成績:")
  2. score=float(score)
  3. if(score>=60):
  4.    print("及格了!")
  5. else:
  6.    print("不及格,斬!")
複製代碼

作者: 王禹恆    時間: 2019-7-16 09:46

  1. score=input("輸入分數:")
  2. score=float(score)
  3. if(score>=60):
  4.     print("及格了!")
  5. else:
  6.     print("不及格!")
複製代碼

作者: 黃鋐粟    時間: 2019-7-16 09:48

score=float(input("報上你的分數:"))
if(score>=60):
    print("恭喜你及格了")
else:
    print("不及格...斬")
作者: 曾博宇    時間: 2019-7-16 09:48

  1. score=float(input("請輸入你的成績:"))
  2. if(score>=60):
  3.    print("恭喜你及格了!")
  4. else:
  5.    print("不及格...斬")
複製代碼

作者: 李宇澤    時間: 2019-7-16 09:49

score=input("輸入你的成績: ")
score=float(score)
if(score>=60 and score<=100):
    print("恭喜你!及格了!")
elif(score>=0 and score<60):
    print("不及格~斬!")
作者: 林凱楓    時間: 2019-7-16 09:49

  1. score=input("報上你的成績:  ")
  2. score=float(score)
  3. if(score>=60):
  4.     print("恭喜你及格了!")
  5. else:
  6.     print("不及格...斬")   
複製代碼

作者: 王柏諺    時間: 2019-7-16 09:53

  1. score=input("請輸入你的成績:")
  2. score=float(score)
  3. if(score>=60 and score<=100):
  4.     print("恭喜你!及格了!")
  5. elif(score>=0 and score<60):
  6.     print("不及格~斬!")
  7.    
複製代碼

作者: 林凱楓    時間: 2019-7-16 09:56

  1. score=input("你的成績: ")
  2. score=float(score)
  3. if(score>=60 and score<=100):
  4.     print("恭喜你!")
  5. elif(score>=0and score<60):
  6.     print("不及格~斬!")
複製代碼

作者: 王銘鴻    時間: 2019-7-16 10:02

  1. score=input("請輸入你的成績")
  2. score=float(score)
  3. if(score>60 and score<=100):            
  4.     print("恭喜你!及格了!")
  5. if(score>0 and score<59):                 
  6.     print("不及格!斬!")
複製代碼

作者: 黃宇綸    時間: 2019-7-16 10:23

  1. s=float(input("報上你的成績: "))
  2. if(s>=60):
  3.     print("恭喜你!及格了!")
  4. else:
  5.     print("不及格!斬!")
複製代碼

作者: 孫紹普    時間: 2019-7-16 10:30

  1. score=int(input("把你的成績喊出來!: "))
  2. print(score)
  3. if(score>=90 and score<=100):
  4.     print("優等")   
  5. elif(score>=80 and score<=90):
  6.     print("甲等")
  7. elif(score>=70 and score<=80):
  8.     print("乙等")
  9. elif(score>=60 and score<=70):
  10.     print("丙等")
  11. elif(score>=0 and score<=60):
  12.     print("不及格")
  13. else:
  14.     print("輸入錯誤!")   
複製代碼

作者: 楊子毅    時間: 2019-7-16 10:36

  1. score=input("請輸入你的成績:")
  2. score=float(score)
  3. if(score>=60):
  4.    print("及格!!!!!!!!")
  5. else:
  6.    print("不及格!!!!!!")   
  7.          
  8.          
複製代碼

作者: 黃宇瑄    時間: 2019-7-16 10:37

  1. s=input("報上你的成績: ")
  2. s=float(s)
  3. if(s>=60):
  4.     print("恭喜你及格了!")
  5. else:
  6.     print("不及格...斬!")
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2