#include <iostream>#include <string>using namespace std;int main(){string a;/////指定串,可根据要求替换string b;////要查找的串,可根据要求替换string c;while(cin>>a>>b>>c){int pos;pos = a.find(b);////查找指定的串while (pos != -1){a.replace(pos,b.length(),c);////用新的串替换掉指定的串pos = a.find(b);//////继续查找指定的串,直到所有的都找到为止}cout<<a<<endl;}return 0;} 这个代码超时了,请问怎么控制?程序运行超时
- 2 回答
- 0 关注
- 1468 浏览
添加回答
举报
0/150
提交
取消