返回列表 發帖

302 函式與陣列 (分數調整)

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

2. 設計說明:
請撰寫一程式,包含名為compute()的函式,接收主程式傳遞的一個期中考分數,compute()判斷分數值,若分數在0~100以外,則回傳「-1」;若分數大於等於60,則加5分;否則一律加10分,回傳至主程式輸出。

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

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

輸出說明
調整後的分數

範例輸入1
78
範例輸出1
83

範例輸入2
120
範例輸出2
-1

本帖隱藏的內容需要回復才可以瀏覽
Python
  1. def compute(score):
  2.     if score < 0 or score > 100:
  3.         return -1
  4.     elif score >= 60:
  5.         return score + 5
  6.     else:
  7.         return score + 10

  8. score = int(input())
  9. print(compute(score))
複製代碼

  1. def compute(n):
  2.     if(n>=0 and n<=100):
  3.         if(n>=60):
  4.             n+=5
  5.         else:
  6.             n+=10
  7.         return n
  8.     else:
  9.         return -1
  10.    
  11. n=int(input())
  12. t=compute(n)
  13. print(t)
複製代碼

TOP

  1. def compute(n):
  2.     if n>=0 and n<=100:
  3.         if n>=60:
  4.             n=n+5
  5.         else:
  6.             n=n+10
  7.         return n
  8.     else:
  9.         return -1
  10. a=int(input())
  11. t=compute(a)
  12. print(t)
複製代碼

TOP

  1. def compute(n):
  2.     if(n>=0 and n<=100):
  3.         if(n>=60):
  4.             n+=5
  5.         else:
  6.             n+=10
  7.         return n
  8.     else:
  9.         return -1
  10. a=int(input())
  11. t=compute(a)
  12. print(t)   
複製代碼

TOP

def compute(a):
    if (a>=0 and a<=100):
        if (a>60):
            a+=5
        else:
            a+=10
        return a
    else:
        return -1
a=int(input())
t=compute(a)
print(t)

TOP

  1. def compute(a):
  2.    
  3.   if a>=60 and a<=100 :
  4.       a=a+5
  5.   elif a<60 and a>=0:
  6.       a=a+10
  7.   else:
  8.       a=-1
  9.   return a
  10.   
  11.    
  12. a=int(input())  
  13. score=compute(a)  
  14. print(score)
複製代碼
回復 1# 鄭繼威

TOP

返回列表