Advertisement
domybest100

July_week3_5)공백 없애기

Jul 17th, 2019
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <sstream>
  4. using namespace std;
  5. int main() {
  6.     string answer, input, t;
  7.     getline(cin, input);
  8.     stringstream ss(input);
  9.     while (ss >> t) cout << t;
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement