#include <iostream>
#include <vector>
using namespace std;
int main() {
vector<string> cars = {"Volvo", "BMW", "Ford", "Tesla"};
// 修改第一个元素的值
cars[0] = "Opel";
cout << cars[0];
return 0;
}