题解
2025-05-04 22:06:46
发布于:江苏
6阅读
0回复
0点赞
#include<iostream>
#include<cstring>
using namespace std;
int main(){
char c[110];
cin>>c;
int n=strlen(c);
for(int i=0;i<n;i++){
if(c[i]=='t'){
cout<<'w';
continue;
}
cout<<c[i];
}
return 0;
}
这里空空如也
有帮助,赞一个