#include <iostream>
#include <vector>
using namespace std;
int main() {
// 创建存储汽车品牌的字符串向量
vector<string> cars = {"Volvo", "BMW", "Ford", "Tesla"};
// 打印向量中的汽车品牌
for (string car : cars) {
cout << car << "\n";
}
return 0;