어읽로꾸거
BOJ 2975 Transactions 본문
백준링크
https://www.acmicpc.net/problem/2975
풀이
🙄
코드
#include<iostream>
using namespace std;
int main() {
freopen("input.txt", "r", stdin);
int account, change, result;
char task;
while (1) {
cin >> account >> task >> change;
if (account == 0 && change == 0 && task == 'W') break;
if (task == 'W') result = account - change;
if (task == 'D') result = account + change;
if (result < -200) cout << "Not allowed" << endl;
else cout << result << endl;
}
}
'알고리즘' 카테고리의 다른 글
BOJ 5397 키로거 (0) | 2019.04.05 |
---|---|
BOJ 5558 チーズ (0) | 2019.04.05 |
BOJ 4287 Word Ratios (0) | 2019.04.01 |
BOJ 2504 괄호의 값 (0) | 2019.03.31 |
BOJ 16118 달빛여우 (0) | 2019.03.30 |