单选题 难度 2
叠盘子,最后放的最先拿。
下面代码的输出是( )。 stack<int> s; s.push(1); s.push(2); s.push(3); s.pop(); cout << s.top() << " " << s.size() << endl;