简单逻辑,判断是不是空格的流畅思路
2024-06-15 23:10:50
发布于:浙江
10阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
string s;
getline(cin,s);
int a = s.size();
for(int i=0;i<a;){
int m=0;
if(s[i]!=' '){
cout<<s[i];
i++;
}
else{
cout<<' ';
i++;
while(s[i]==' '){
i++;
}
}
}
return 0;
}
这里空空如也
有帮助,赞一个