執行 ❯
建立您
自己的
網站
×
更改方向
更改主題,深色/淺色
前往 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"); // Remove the last/latest added element (Mazda) cars.pop(); // Access the top element (Now Ford) cout << cars.top(); return 0; }
福特