https://www.acmicpc.net/problem/5597
#include <iostream>
using namespace std;
int main() {
int ary[30] = { 0, };
int n;
for (int i = 0; i < 28; i++)
{
cin >> n;
ary[n - 1] = 1;
}
for (int i = 0; i < 30; i++)
if (!ary[i])
cout << i + 1 << "\n";
}
'Programming > BaekJoon' 카테고리의 다른 글
[C++] 백준 10707번 : 수도요금 (0) | 2019.02.26 |
---|---|
[C++] 백준 2822번 : 점수 계산 (0) | 2019.02.26 |
[C++] 백준 5063번 : TGN (0) | 2019.02.26 |
[C++] 백준 2884번 : 알람 시계 (0) | 2019.02.26 |
[C++] 백준 2563번 : 색종이 (0) | 2019.02.26 |