摘要: void TestMaxElement() { vector<int> vi{1,7,9,3,15,6,20}; for (auto i:vi) { cout << i << std::endl; } auto begin = vi.begin()+2; std::cout << *begin << 阅读全文
posted @ 2021-02-26 23:33 Truman001 阅读(45) 评论(0) 推荐(0) 编辑