首页 > 试题广场 >

上述程序的输出为( )

[单选题]
#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
`cout << st.top()   没有跟st.pop()
发表于 2019-09-06 13:10:33 回复(0)