返回列表 發帖

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

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

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

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

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

輸出說明
調整後的分數

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

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

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

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int compute(int n)
  4. {
  5.     if(n>100 || n<0)
  6.         return -1;
  7.     if(n>=60)
  8.         return n + 5;
  9.     return n + 10;


  10. }
  11. int main()
  12. {
  13.     int n;
  14.     cin>> n;
  15.     cout<<compute(n)<<endl;

  16.     return 0;
  17. }
複製代碼

TOP

  1. #include<bits/stdc++.h> //Sn=(2a1+d*n-1)*n/2
  2. using namespace std;
  3. int compute(int a)
  4. {
  5.     if(a>=0 && a<=100)
  6.     {
  7.         return (a>60? a+5:a+10) ;
  8.     }
  9.     else
  10.         return -1;
  11. }
  12. int main()
  13. {
  14.     int n;
  15.     cin >> n;
  16.     cout << compute(n) << endl;
  17.     return 0;
  18. }
複製代碼
Vincent

TOP

返回列表