哈理工Final Ugly English(倒置英文)

前端之家收集整理的这篇文章主要介绍了哈理工Final Ugly English(倒置英文)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

//坑点:可能有连续的个空格

#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

猜你在找的设计模式相关文章