运行 ❯
获取
自己的
网站
×
更改定位
更改主题,深色/浅色
转到 Spaces
#include <iostream> #include <vector> // Including the vector library using namespace std; int main() { // A vector with 3 elements vector<string> cars = {"Volvo", "BMW", "Ford"}; // Adding another element to the vector cars.push_back("Tesla"); for (string car : cars) { cout << car << "\n"; } return 0; }
沃尔沃
宝马
福特
特斯拉