不理解 就比如:
int a[114]; for(int i = 0;i < 114;i++) cin>>a[i];
我觉得不如:
vector<int> a(114); for(int &i : a) cin >> i;
我不理解!