运行 ❯
获取你
自己
的网站
×
更改方向
更改主题,深色/浅色
访问Spaces
#include <iostream> #include <stack> using namespace std; int main() { stack<string> cars; cars.push("Volvo"); cars.push("BMW"); cars.push("Ford"); cars.push("Mazda"); // Check if the stack is empty cout << cars.empty(); return 0; }
0