解题思路:利用了vector作为存储的媒介
注意事项:
参考代码:
#include <iostream> #include <string.h> #include <vector> using namespace std; int main() { int n=0; vector<string> list; string str; cin >> n; while(n > 0) { getline(cin,str); if(str.empty()) continue; list.push_back(str); n--; } for (size_t var = 0; var < list.size(); ++var) { cout << list[var] << endl; cout << endl; } while(cin)//是否结束 { str.clear(); cin >> str; if(str.empty())//读入EOF时会存在最后一次读入为空的情况 continue; cout << str << endl << endl; } return 0; }
0.0分
0 人评分