fork 自 sduonline/sc-resources
18 行
270 B
Java
18 行
270 B
Java
package com.mj;
|
|
|
|
public class Main {
|
|
|
|
public static void main(String[] args) {
|
|
Stack<Integer> stack = new Stack<>();
|
|
stack.push(11);
|
|
stack.push(22);
|
|
stack.push(33);
|
|
stack.push(44);
|
|
|
|
while (!stack.isEmpty()) {
|
|
System.out.println(stack.pop());
|
|
}
|
|
}
|
|
|
|
}
|