K12教育赛事综合服务平台
聚乐之家官方网站
下载聚乐之家官方App
专注青少年竞赛题库网站
#include <iostream> #include <vector> using namespace std; int main() { vector<vector<int>> arr(3, vector<int>(2, 1)); arr[1].push_back(3); arr.push_back({4,5}); cout << arr[2][1] + arr[3][0] << endl; return 0; }
7
6
5
编译报错