while (true) {
cin >> num;
if (cin.eof()) return 0;
...
}
// or
while (cin >> num) {
...
}
'C++' 카테고리의 다른 글
C++ - bits/stdc++.h 헤더파일에서 unordered_map & set 등 사용하기 (0) | 2025.01.22 |
---|---|
C++ - map 요소 접근 방법 (0) | 2025.01.16 |
C++ - lower_bound & upper_bound (0) | 2025.01.11 |
C++ 대소문자 변환 (0) | 2025.01.10 |
C++ - 알고리즘 문제 풀이에 유용한 bits/stdc++.h 헤더파일 (0) | 2024.12.31 |