题解
2024-11-15 21:53:17
发布于:江苏
2阅读
0回复
0点赞
#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];
}
}
这里空空如也
有帮助,赞一个