第02課、vector的使用
# vector # 標頭檔 #include<vector># 構造器 && 初始化 默認構造器:empty container constructor 批量構造器:fill constructor 範圍構造器:range constructor 複製構造器:copy constructor #include<vector>#include<iostream>using namespace std;void print(vector<int> temp){...
more...