dame
2023-12-25 12:58:32
发布于:广东
2阅读
0回复
0点赞
#include <iostream>
#include <string>
using namespace std;
void deletespace(){
string s;
getline(cin, s);
int len = s.length();
for(int i = 0; i < len; i++){
if(s[i] == ' '){
s[i] = '*';
}
}
cout << s;
}
int main(){
deletespace();
return 0;
}
这里空空如也
有帮助,赞一个