运行 ❯
获得您
自己的
网站
×
更改方向
更改主题,深色/浅色
转到空间
#include <iostream> #include <deque> using namespace std; int main() { // Create a deque called cars that will store strings deque<string> cars = {"Volvo", "BMW", "Ford", "Mazda"}; // Get the first element cout << cars.front() << "\n"; // Outputs Volvo // Get the last element cout << cars.back() << "\n"; // Outputs BMW return 0; }
沃尔沃
马自达