用来清除某模板前面恶心的数字。。。

自作多情 提交于 2019-11-29 00:37:38
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define inf 0x3f3f3f3f
#define N 2000
int main(){
    ofstream outfile;
    outfile.open("out.txt");
    string sss;
    while(1){
        getline(cin,sss);
        stringstream ss(sss);
        string tmp;
        ss>>tmp;
        while(!ss.eof()){
            ss>>tmp;
            cout<<' '<<tmp;
            outfile<<' '<<tmp;
        }
        cout<<'\n';
        outfile<<'\n';
    }return 0;
}

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!