#29579: C++紀錄


e3524167 (Kenlogin)

學校 : 不指定學校
編號 : 186743
來源 : [182.233.207.92]
最後登入時間 :
2022-03-17 21:12:56
a053. Sagit's 計分程式 -- Sagit's 教學題 | From: [182.233.207.92] | 發表日期 : 2022-03-12 21:08

#include <iostream>

#include <string> 

#include <sstream>

 

using namespace std;

int main()

{

int x,res=0;

while (cin >> x)

{

for (int i = 1; i <= x; i++)

{

if (i <= 10)

{

res = res + 6;

}

if (i >= 11 && i <= 20)

{

res = res + 2;

}

if (i >= 21 && i <= 40)

{

res = res + 1;

}

if (i >= 41)

{

res = 100;

}

}

cout << res << endl;

res = 0;

}

}

 
ZeroJudge Forum