#include<iostream>
#include<cstring>
using namespace std;

int main()
{
string str;
string srcSubStr;
string dstSubStr;
string out;
getline(cin, str);
getline(cin, srcSubStr);
getline(cin, dstSubStr);
cout<<str<<endl;
int pos;
pos=str.find(srcSubStr);
while(pos!=-1)
{
str.replace(pos, srcSubStr.length(), dstSubStr);
pos=str.find(srcSubStr);
}
cout<<str<<endl;
}

1 条评论

  • 1

信息

ID
1052
难度
7
分类
(无)
标签
递交数
376
已通过
83
通过率
22%
被复制
6
上传者