[BOJ/C++] 5597 과제 안 내신 분..?

mani·2023년 5월 20일
0

baekjoon_step

목록 보기
39/73
post-thumbnail



과제 제출 기한이 지났습니다.

#include <iostream>

using namespace std;

int main() {
	int list[30] = { 0, };

	int input;
	for (int i = 0; i < 28; i++) {
		cin >> input;
		list[input - 1] = 1;
	}

	for (int i = 0; i < 30; i++) {
		if (list[i] == 0)
			cout << i + 1 << '\n';
	}

	return 0;
}
profile
log

0개의 댓글