#include #include #include #include using namespace std; int main() { vector vInt; const int sz = 10; srand((unsigned ) time(NULL)); cout <<"数组的初始值为" << endl; for(int i = 0; i != sz; ++i) { vInt.push_back(rand() % 100); cout << vInt[i] << " "; } cout <