//坑点:可能有连续的个空格
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cstring>
#include <sstream>
#include <vector>
#include <map>
#include <set>
using namespace std;
string s;
int main()
{
while(getline(cin,s)){
int c = 0;
string st;
for(int i=0; i<s.size(); i++){
if(s[i] != ' ')
st += s[i];
if((s[i] != ' ' && s[i+1] == ' ') || i==s.size()-1){
for(int j=0; j<st.size(); j++){
s[i-j] = st[j];
}
st.clear();
}
}
cout << s << endl;
}
}
原文链接:https://www.f2er.com/javaschema/283197.html