#11419: why I am wrong?


warren (warren(爽啦))

學校 : 臺北市私立延平高級中學
編號 : 60242
來源 : [203.72.178.252]
最後登入時間 :
2018-09-07 17:15:43
a053. Sagit's 計分程式 -- Sagit's 教學題 | From: [117.19.81.126] | 發表日期 : 2016-10-09 20:17

#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
 
 int x;
 cout <<"score:";
 cin >>x;
 
   if((x>=0)&&(x<=10))
     cout << x*6 <<endl;
   if((x>=11)&&(x<=20))
     cout << 60+(x-10)*2<<endl ;
   if((x>=21)&&(x<=40))
     cout << 80+(x-20)<<endl ;
   if(x>40)
     cout << 100<<endl ;
 
 
 
 
 
 return 0;
}
 
#11420: Re:why I am wrong?


simon3871 (simon3871)

學校 : 國立臺灣大學
編號 : 52955
來源 : [140.112.243.177]
最後登入時間 :
2020-10-06 07:19:27
a053. Sagit's 計分程式 -- Sagit's 教學題 | From: [36.230.130.81] | 發表日期 : 2016-10-09 23:14

cout <<"score:";

這行刪掉就可以了

 
ZeroJudge Forum