Assignment
Write a Java program to accomplish the following tasks. After you are done, send the original Java code, along with screenshots of the result.
Create an empty stack.
Add 5 numbers to the stack.
Reverse the order of these numbers in the stack.
Hint: After pushing 5 numbers to the stack, pop them to an empty queue, then transfer the data to the stack (this is only one of the solutions).
Assignment Expectations
Program should accomplish all tasks required.
Sufficient documentation is demonstrated in the program.
The post Write a Java program to accomplish the following tasks. appeared first on Assignment Prep.