返回列表 發帖

109 基本認識 (分數判斷)

1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。

2. 設計說明:
請撰寫一程式,讓使用者輸入分數,判斷此分數是否及格(及格分數為60分以上),若及格,則輸出「pass」;若不及格,則輸出「fail」,再判斷此分數為奇數或偶數,若為奇數,則輸出「odd」;若為偶數,則輸出「even」,若輸入的分數不在0~100中,則輸出「error」。

提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。

3. 輸入輸出:
輸入說明
一個整數

輸出說明
該分數pass或fail與該數為odd或even;若分數不在0~100中,輸出error。

範例輸入1
90
範例輸出1
pass
even


範例輸入2
59
範例輸出2
fail
odd


範例輸入3
101
範例輸出3
error

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

python
  1. a=int(input())

  2. if(a>=0 and a<=100):
  3.     if(a>=60):
  4.         print("pass")
  5.     else:
  6.         print("fail")
  7.     if(a%2==0):
  8.         print("even")
  9.     else:
  10.         print("odd")
  11. else:
  12.     print("error")
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表