返回列表 發帖

if...else

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



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


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

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

score=float(input("報上你的分數:"))
if(score>=60):
    print("恭喜你及格了")
else:
    print("不及格...斬")

TOP

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

TOP

score=input("輸入你的成績: ")
score=float(score)
if(score>=60 and score<=100):
    print("恭喜你!及格了!")
elif(score>=0 and score<60):
    print("不及格~斬!")

TOP

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

TOP

  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.    
複製代碼

TOP

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

TOP

  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("不及格!斬!")
複製代碼

TOP

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

TOP

  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("輸入錯誤!")   
複製代碼

TOP

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

TOP

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

TOP

返回列表