#include <vector> //... size_t size = 10; std::vector<int> array(size); // make room for 10 integers, // and initialize them to 0 // do ...
確定! 回上一頁