摘要: #include<iostream> using namespace std; #include <stack> void objPlay2() { stack<int> stkInt; stkInt.push(1); //放进去1 stkInt.push(3); //放进去3 stkInt.pop 阅读全文
posted @ 2016-04-07 22:42 视野 阅读(88) 评论(0) 推荐(0) 编辑