运行 ❯
获得您自己的
网站
×
更改方向
更改主题,深色/浅色
转到 Spaces
#include <iostream> #include <queue> using namespace std; int main() { // Create a queue of strings queue<string> cars; // Add elements to the queue cars.push("Volvo"); cars.push("BMW"); cars.push("Ford"); cars.push("Mazda"); // Remove the front element (Volvo) cars.pop(); // Access the front element (Now BMW) cout << cars.front(); return 0; }
宝马