본문 바로가기

Algorithm

C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 5063번:TGN 답

반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>
using namespace std;
int main() {
    int n, r, e, c;
    cin >> n;
    while (n--)
    {
        cin >> r >> e >> c;
        if (r < e - c) { cout << "advertise"<<'\n'; }
        else if (r > e - c) { cout << "do not advertise" << '\n'; }
        else { cout << "does not matter"<<'\n'; }
    }
}
cs