摘要: 1 auto getter() { 2 return new vector<int>(); 3 } 4 auto setter(vector<int>* vec) { 5 int x; 6 while (cin >> x) 7 vec->push_back(x); 8 return vec; 9 } 阅读全文
posted @ 2020-05-25 11:51 世界を変える御宅族 阅读(157) 评论(0) 推荐(0) 编辑