이미 cin을 한번 했기 때문에 ignore
int main()
{
int n, t = 1;
cin >> n;
cin.ignore();
while (n--)
{
string str, tmp;
getline(cin, str);
stringstream ss(str);
stack<string> s;
while (ss >> tmp)
s.push(tmp);
cout << "Case #" << t++ << ": ";
while (!s.empty())
{
cout << s.top() << ' ';
s.pop();
}
cout << '\n';
}
}
'코딩테스트 > 백준' 카테고리의 다른 글
[브1] 25425 - 운동회 (0) | 2024.12.16 |
---|---|
[브1] 1356 - 유진수 (0) | 2024.12.10 |
[실5] 7785 - 회사에 있는 사람 (0) | 2024.12.01 |
[실4] 14425 - 문자열 집합 (0) | 2024.12.01 |
[실5] 10815 - 숫자 카드 (0) | 2024.12.01 |