返回题解分享
讨论 / 题解分享/ 帖子详情

拓拓在打字 - 题解

#include<bits/stdc++.h>
using namespace std;

int main(){
	string str;
	getline(cin,str);
	int n=str.length();
	for(int i=0; i<n; i++){
		if(str[i]==' '&&str[i+1]==' '){
			continue;
		}
		cout<<str[i];
	}
	
	return 0;
}
0 回复 0 转发 0 喜欢 1 阅读
回复 (0)
默认 最新
暂无回复,快来抢沙发!