알고리즘/알고리즘 이론, 템플릿
eof 처리
b1ackhand
2022. 12. 23. 20:02
while (true) {
string tmp;
getline(cin, tmp);
if (cin.eof() == true)
break;
}