不确定该行何时收尾,并读入整行字符串并按空格分割存入数组
string tmp; getline(cin, tmp); stringstream ssin(tmp); vector<string> hh; while (ssin >> tmp) hh.push_back(tmp);