解
2024-10-25 20:27:53
发布于:浙江
4阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
string str;int x,y;
cin >> str >> x >> y;
x--,y--;
if(str[x]==str[y])
str[x]='#',str[y]='#';
else
swap(str[x],str[y]);
cout << str;
}
这里空空如也
有帮助,赞一个