#include <iostream> #include <vector> using namespace std; int main() ... You can create a 2D array by doing int a[5][7], but vector<int> a(5,7) won't ...
確定! 回上一頁