Advertisement
lizalaver
Mar 18th, 2023
9
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7.     string query;
  8.     getline(cin, query);
  9.     int i;
  10.     string word;
  11.     for(i = 0; i < query.size(); i++){
  12.         if(query[i] != ' '){
  13.         word += query[i];
  14.         }
  15.            else{
  16.             cout << "["s << word << "]"s << endl;
  17.             word = ""s;
  18.            }
  19.     }
  20.     cout <<  "["s << word << "]"s << endl;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement