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