#18021: c++解答


sherry890910@gmail.com (熊熊)

學校 : 臺北市立中山女子高級中學
編號 : 97240
來源 : [223.136.138.144]
最後登入時間 :
2019-12-23 16:02:55
b969. hello, everyone -- 板橋高中python教學題 | From: [1.34.248.157] | 發表日期 : 2019-06-11 23:13

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

int main()
{
string A,B;
getline(cin, A);
getline(cin, B);
stringstream ss;
ss << A;
while (ss >> A)
cout<<B<<", "<<A<<endl;
return 0;
}

 
ZeroJudge Forum