Advertisement
nickzheleznov
Oct 18th, 2023
7
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.     string word;
  10.     for (int i = 0; i <= query.size(); ++i) {
  11.         if (query[i] != ' ' && i < query.size()) {
  12.             word += query[i];
  13.         } else {
  14.             cout << "[" << word << "]" << endl;
  15.             word = "";
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement