(String args[])
| 28 | } |
| 29 | } |
| 30 | public static void main(String args[]) { |
| 31 | Stack stack = new Stack(); |
| 32 | stack.push(1); |
| 33 | stack.push(2); |
| 34 | stack.push(3); |
| 35 | stack.push(4); |
| 36 | |
| 37 | while(!stack.isEmpty()) { |
| 38 | System.out.println(stack.peek()); |
| 39 | stack.pop(); |
| 40 | } |
| 41 | } |
| 42 | } |