diff --git a/stack.java b/stack.java new file mode 100644 index 0000000..0c9f8c9 --- /dev/null +++ b/stack.java @@ -0,0 +1,21 @@ +import java.util.Stack; +public class StackEmptyMethodExample +{ +public static void main(String[] args) +{ +//creating an instance of Stack class +Stack stk= new Stack<>(); +// checking stack is empty or not +boolean result = stk.empty(); +System.out.println("Is the stack empty? " + result); +// pushing elements into stack +stk.push(78); +stk.push(113); +stk.push(90); +stk.push(120); +//prints elements of the stack +System.out.println("Elements in Stack: " + stk); +result = stk.empty(); +System.out.println("Is the stack empty? " + result); +} +}