有关必回 AC代码
2024-07-15 14:50:34
发布于:北京
3阅读
0回复
0点赞
给个关注吧,有关必回
#include <bits/stdc++.h>
using namespace std;
string s;
int main()
{
getline(cin,s);
int len=s.size();
for(int i=0;i<=len-1;++i){
if(s[i]=='t') s[i]='w';
}
cout<<s;
return 0;}
这里空空如也
有帮助,赞一个