码迷,mamicode.com
首页 > 其他好文 > 详细

stack

时间:2017-09-17 00:24:42      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:pac   cout   stream   pre   std   using   stack   while   push   

#include <iostream>
#include <stack>
using namespace std;
int main(){
int a;
stack<int> s;	
	while(cin>>a){
		if(a==1){
			int b;
			cin>>b;
			s.push(b);
		}
		if(a==2)
			cout<<"The top is "<<s.top()<<endl;
		if(a==3)
			s.pop();
	}
	return 0;
}

  

stack

标签:pac   cout   stream   pre   std   using   stack   while   push   

原文地址:http://www.cnblogs.com/HC-LittleJian/p/7533262.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!