#45503: 這題用stringstream 超級簡單!!!!!!!


1121228@stu.wghs.tp.edu.tw (你知道我是誰嗎!!??)

學校 : 臺北市立建國高級中學
編號 : 266561
來源 : [60.248.154.143]
最後登入時間 :
2025-03-28 09:48:03
e456. Ten little Indians -- 板橋高中Python教學題 | From: [60.248.154.139] | 發表日期 : 2025-03-10 13:05

stringstream基本上就是個容器 他以字為單位儲存 所以都幫你分割好字了!

#include <bits/stdc++.h>
using namespace std;
 
int main() {
string s;
getline(cin, s);
stringstream ss(s);
string t;
ss >> t;
cout << t;
while(ss >> t){
    cout << " little, " << t;
}
cout << " little Indians";
    return 0;
}
 
ZeroJudge Forum