#31883: cpp ans


jasontw77661@gmail.com (Jason Chang)

學校 : 不指定學校
編號 : 171679
來源 : [140.113.136.219]
最後登入時間 :
2023-06-13 20:09:12
a053. Sagit's 計分程式 -- Sagit's 教學題 | From: [36.224.33.144] | 發表日期 : 2022-08-25 11:47

#include <iostream>

using namespace std;
int main(){
  int n;
  cin >> n;
  if(n <= 10){
    cout << n * 6 << endl;
  }else if((n > 10) && (n <= 20)){
    cout << (n - 10) * 2 + 60 << endl;
  }else if((n > 20) && (n <= 40)){
      cout << (n - 20) + 80 << endl;
  }else{
    cout << "100" <<endl;
  }

}

 
ZeroJudge Forum