delimastom
2023-12-27 19:49:54
发布于:广东
0阅读
0回复
0点赞
#include <iostream>
#include <string>
using namespace std;
int main(){
string s;
cin >> s;
int len = s.length();
for(int i = 0; i < len; i++){
if(s[i] == 't'){
s[i] = 'w';
}
}
cout << s;
return 0;
}
这里空空如也
有帮助,赞一个