运行 ❯
获取
您自己的
网站
×
更改方向
更改主题,深色/浅色
转到 Spaces
#include <iostream> #include <deque> using namespace std; int main() { deque<string> cars = {"Volvo", "BMW", "Ford", "Mazda"}; // Remove the first element cars.pop_front(); // Remove the last element cars.pop_back(); // Print list elements for (string car : cars) { cout << car << "\n"; } return 0; }
宝马
福特