运行 ❯
获取
您自己的
网站
×
更改方向
更改主题,深色/亮色
转到 Spaces
#include <iostream> #include <vector> using namespace std; int main() { vector<string> cars = {"Volvo", "BMW", "Ford", "Mazda"}; vector<string> carbrands; carbrands.assign(cars.begin(), cars.end()); for (string brand : carbrands) { cout << brand << "\n"; } return 0; }
沃尔沃
宝马
福特
马自达