zoj 1707 Automatic Editing

zoj 1707 Automatic Editing,第1张

zoj 1707 Automatic Editing
#include<iostream>using namespace std;int main(){    int n;    while(cin >> n && n != 0)    {        string from[16],to[16];        getline(cin,from[0]);        for(int i = 0; i < n; ++i)        { getline(cin,from[i]); getline(cin,to[i]);        }        string str;        getline(cin,str);        for(int i = 0; i < n; ++i)        { int pos; while((pos = str.find(from[i])) != string::npos)     str.replace(pos,from[i].size(),to[i]);        }        cout << str << endl;    }    return 0;}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4928003.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存