运行 ❯
获取您
自己的
网站
×
更改方向
更改主题,深色/浅色
前往 Spaces
#include <iostream> #include <deque> using namespace std; int main() { deque<string> cars = {"Volvo", "BMW", "Ford", "Mazda"}; // Add an element at the beginning cars.push_front("Tesla"); // Add an element at the end cars.push_back("VW"); // Print list elements for (string car : cars) { cout << car << "\n"; } return 0; }
特斯拉
沃尔沃
宝马
福特
马自达
大众