#41581: chatgpt cpp


1121226@stu.wghs.tp.edu.tw (Arthur1121226)

學校 : 臺北市私立薇閣高級中學
編號 : 252772
來源 : [60.248.154.139]
最後登入時間 :
2024-11-04 13:24:52
e570. 賓語提前 -- 트와이스 | From: [60.248.154.139] | 發表日期 : 2024-08-08 13:05

#include <iostream>
#include <string>
#include <sstream>
using namespace std;
string restoreSentence(string line) {
    size_t pos = line.find("之");
    if (pos != string::npos) {
        string object = line.substr(0, pos);
        string predicate = line.substr(pos + 3);
        return predicate + object;
    }
    pos = line.find("是");
    if (pos != string::npos){
        string object = line.substr(0, pos);
        string predicate = line.substr(pos + 3);
        return predicate + object;
    }
    return line;
}
int main() {
    string line;
    while (getline(cin, line)) {
        if (line.empty()) {
            continue;
        }
        string restored = restoreSentence(line);
        cout << restored << endl;
    }

    return 0;
}

 
ZeroJudge Forum