Napisz program który wyświetli tekst w postaci rozstrzelonej wprowadzony przez użytkownika C++ pilne



Odpowiedź :

#include <iostream>

#include <string>

std::string rozstrzel(const std::string& s)

{

std::string res;

for (auto x : s)

{

 res.push_back(x);

 res.push_back(' ');

}

res.pop_back();

return res;

}

int main()

{

std::string text;

std::getline(std::cin, text);

std::cout << rozstrzel(text) << '\n';

}