题解
2023-07-30 21:24:58
发布于:广东
24阅读
0回复
0点赞
不说废话上题解!
#include<iostream>
#include<string>
#include<queue>
using namespace std;
int main(){
int n;
queue<int> a;
int str;
cin>>n;
for(int i=1;i<=n;i++){
cin>>str;
if(str==1){
int n;
cin>>n;
a.push(n);
}
if(str==2){
if(a.empty()) cout<<"impossible!"<<endl;
else{
a.pop();
}
}
if(str==3){
if(a.empty()) cout<<"impossible!"<<endl;
else{
cout<<a.front()<<endl;
}
}
}
return 0;
}
这里空空如也
有帮助,赞一个