运行 ❯
获取您
自己的
网站
×
更改方向
更改主题,深色/浅色
前往 Spaces
#include <iostream> #include <set> using namespace std; int main() { // Create a set called cars that will store strings set<string> cars = {"Volvo", "BMW", "Ford", "Mazda"}; // Add new elements cars.insert("Tesla"); cars.insert("VW"); cars.insert("Toyota"); cars.insert("Audi"); // Print set elements for (string car : cars) { cout << car << "\n"; } return 0; }
奥迪
宝马
福特
马自达
特斯拉
丰田
大众
沃尔沃