下列代码输出结果应为()
stack stk;
for(int i = 1; i <= 5; i ++) stk.push(i);
while(stk.size()) {
cout << stk.top() << ' ';
stk.pop();
}