fork 自 sduonline/sc-resources
增加淘宝群内容,修改部分文件组织
此提交包含在:
@@ -0,0 +1,17 @@
|
||||
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());
|
||||
}
|
||||
}
|
||||
|
||||
}
|
新增問題並參考
封鎖使用者