将一串字符串以空格进行分割,并将字符串到着输出,但是字符串的最后面存在空格,例如“hello word ”,输出的时候为什么word会输出两次??
#include<iostream>
#include<string>
#include<stack>
#include<sstream>
using namespace std;
int main() {
string s;
getline(cin,s);
istringstream str(s);
string ret = "", s1;
stack<string>sta;
while (!str.eof())
{
str >> s1;
cout << s1 << endl;
sta.push(s1);
}
while (!sta.empty())
{
ret += sta.top() + ' ';
sta.pop();
}
if (ret.size() != 0)ret.pop_back();
system("pause");
return 0;
}