#33447: sstream


yp11151077@yphs.tp.edu.tw (907-29林宏智)

學校 : 臺北市私立延平高級中學
編號 : 197202
來源 : [203.72.178.2]
最後登入時間 :
2024-01-11 14:45:13
c186. 蝸牛老師的點名單 -- 板橋高中python教學題 | From: [203.72.178.2] | 發表日期 : 2023-01-06 13:24

#include<sstream>
#include<iostream>
using namespace std;
int main(){
    string s;
    while(getline(cin,s)){
        stringstream ss(s);
        string name;
        while(ss>>name){ 
        cout<<name<<endl;
        }        
    }

return 0;
}

 

 
ZeroJudge Forum