首页 > 试题广场 >

上述程序的输出为( )

[单选题]
#include<bits/stdc++.h>
using namespace std;
int main(){
stack<int>st;
int pos = 1;
while(pos <= 3){
st.push(pos++);
}
cout<<st.top();
while(pos <= 5){
st.push(pos++);
}
while(!st.empty()){
cout<<st.top();
st.pop();
}
return 0;
}


上述程序的输出为(      )
  • 35421
  • 354321
  • 12453
  • 123453
仅打印栈顶元素的话是不会出栈的嗷
发表于 2019-09-11 10:49:26 回复(0)