//// cin.get == '\n' #include <iostream> #include <sstream> #include <algorithm> using namespace std; int main(){ string tmp; vector<string> res; while(cin >> tmp) { //双指针法分割字符串 for(int i = 0;i < tmp.size(); i++) { int j = i; while(tmp[j] != ',' && j < tmp...