×
解除綁定,重新設定系統帳號的密碼
您的系統帳號 ID:
您的系統帳號:
您的帳號暱稱:
設定新密碼:
設定新密碼:
×
請輸入要加入的「課程代碼」
請向開設課程的使用者索取「課程代碼」
Problems
Submissions
Rank
Forum
Contest
Login
Register
New Thread
#8849: WA......
frank73255
(ya~~)
School:
臺北市立成功高級中學
ID:
41002
×
傳送站內訊息
To:
Subject:
Content:
IP address:
[36.229.140.230]
註冊時間:
2014-05-12 09:13:51
Last Login:
2018-01-30 23:59:44
a861.
1. Secure the Perimeter
--
HP CodeWars
2010
| From: [114.25.235.167] | Post Date: 2014-06-02 14:10
#include <iostream>
#include <cstdlib>
#include <stdio.h>
using namespace std;
int main()
{
int h, w;
cin >> h >> w;
cout << h*2+w*2 << endl;
return 0;
}
WA..原因:輸出短少 請教各位大大!
#8867: Re:WA......
anandrewboy70900
(ShowTsai)
School:
國立中央大學
ID:
27736
×
傳送站內訊息
To:
Subject:
Content:
IP address:
[203.204.218.144]
註冊時間:
2012-10-13 09:53:04
Last Login:
2025-11-29 19:24:44
a861.
1. Secure the Perimeter
--
HP CodeWars
2010
| From: [124.12.89.163] | Post Date: 2014-06-11 15:08
#include <iostream>
#include <cstdlib>
#include <stdio.h>
using namespace std;
int main()
{
int h, w;
while(
cin >> h >> w
)
{
cout << h*2+w*2 << endl;
}
return 0;
}
WA..原因:輸出短少 請教各位大大!
要重複輸入~