Here I share my experience.
#include < string > #include < sstream > #include < iostream > using namespace std; int main() { string s, word = "Hello world"; stringstream ss(word); while (getline(ss, s, ' ')) { cout << s << endl; } }
Комментариев нет:
Отправить комментарий