题解
2024-04-14 16:30:39
发布于:广东
5阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
string s;
int main()
{
ios::sync_with_stdio(false);
cin>>s;
for(int i=0;i<=s.size();++i)
{
if(s[i]=='@' and i!=0)
{
s.erase(i-1,2);
i-=2;
}
else if(s[i]=='@' and i==0)
{
s.erase(0,1);
i-=1;
}
}
cout<<s;
}
这里空空如也
有帮助,赞一个