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