#44216: 用 C++ string 也能解喔~


wendeyang2@gmail.com (Wilfred430)

學校 : 國立交通大學
編號 : 252685
來源 : [140.113.66.212]
最後登入時間 :
2024-11-13 23:29:41
c929. 蝸牛老師的點名單-續 | From: [140.113.66.212] | 發表日期 : 2024-11-13 22:04

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

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);

    string key;
    string temp;
    while (getline(cin,key))
    {
        getline(cin, temp);
        size_t tmp;
        while ((tmp = temp.find(key)) != string::npos)
        {
            cout << temp.substr(0, tmp) << endl;
            temp.erase(0, tmp + key.length());
        }
        cout << temp << endl;
    }
    return 0;
}
 
ZeroJudge Forum