#11427: wrong again?


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-10 18:59

#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;
 
 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;
}

 

 
#11444: Re:wrong again?


bear890707 (鄭天鈞沒有妹妹)

學校 : 高雄市立高雄高級中學
編號 : 56038
來源 : [39.10.160.34]
最後登入時間 :
2018-09-23 22:56:28
a053. Sagit's 計分程式 -- Sagit's 教學題 | From: [1.174.77.94] | 發表日期 : 2016-10-16 23:57

#include
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;
 
 cin >>x;
 
   if((x>=0)&&(x<=10))
     cout << x*6 <<endl;
   if((x>=11)&&(x<=20))
     cout << 60+(x-10)*2<   if((x>=21)&&(x<=40))
     cout << 80+(x-20)<   if(x>40)
     cout << 100< 
 
 
 
 
 return 0;
}

 

用迴圈括起來阿


 
ZeroJudge Forum