运行 ❯
获取您的
自己的
网站
×
更改定位
更改主题、黑暗/浅色
转到 Spaces
#include <iostream> #include <vector> using namespace std; int main() { vector<string> cars = {"Volvo", "BMW", "Ford", "Mazda"}; for (string car : cars) { cout << car << "\n"; } return 0; }
沃尔沃
宝马
福特
马自达