#11414: c++解答


qbqq (CYSH108)

學校 : 國立嘉義高級中學
編號 : 59581
來源 : [163.27.3.92]
最後登入時間 :
2017-01-13 13:28:00
d460. 山六九之旅 -- 板橋高中教學題 | From: [111.242.31.57] | 發表日期 : 2016-10-07 23:28

#include <iostream>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

using namespace std;

int main( int argc, char** argv )
{

long long int a;

while (cin >> a)
{
if(0<=a&&a<6)
cout << 0 << endl ;
else if(5<a&&a<12)
cout << 590 << endl ;
else if(11<a&&a<18)
cout << 790 << endl ;
else if(17<a&&a<60)
cout << 890 << endl ;
else if(a>=60)
cout << 399 << endl ;
}

return 0;

}

 

 
ZeroJudge Forum