📝 阅读以下程序 ``` stack<int>s; s.push(1); s.push(2); s.push(3); s.pop(); s.pop(); cout<<s.top(); ``` 最后输出的数字是谁
📂 C++
· ⚡ 难度 1
· ❓ 单选题
· 📖 基础题库
阅读以下程序
```
stack<int>s;
s.push(1);
s.push(2);
s.push(3);
s.pop();
s.pop();
cout<<s.top();
```
最后输出的数字是谁