×
解除綁定,重新設定系統帳號的密碼
您的系統帳號 ID:
您的系統帳號:
您的帳號暱稱:
設定新密碼:
設定新密碼:
×
請輸入要加入的「課程代碼」
請向開設課程的使用者索取「課程代碼」
分類題庫
解題動態
排行榜
討論區
競賽區
登入
註冊
發表新討論
#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