摘要: #include <iostream> using namespace std; class myStack{ public: int size = 0; int array[30]; bool isEmpty(){ return size == 0 ? true : false; } int ge 阅读全文