← Back to Classes
Question 225
Stack Class
Stack Class
Create a classIntStackbacked by aList<int>withPush(int n),Pop()(removes and returns the top item), andCount(). Do NOT write a Main method. Push 1, 2, 3, then Pop once → prints '3 then 2' (popped value, then remaining count).
Expected Output:
3 2
Topics:
Classes
Code Editor
1
Tab to indent · Ctrl+Enter to run · Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.