自从看了竞赛的学长投机取巧做题,每天只想着怎么才能少输两行代码。过滤多余的空格。一篇文章中也许有多个连续空格,过滤掉多余的空格,只留下一个空格。#include <iostream>#include<string>using namespace std;int main() { string s; while(cin>>s) cout<<s<<" ";}