Question
make sure it works 1. Write a Java program that allows a user to input words at the command line. Your program should stop accepting
make sure it works
1. Write a Java program that allows a user to input words at the command line. Your program should stop accepting words when the user enters "STOP". Store the words in an ArrayList. The word STOP should not be stored in the list.
Next, print the size of the list, followed by the contents of the list.
Then, remove the first and last words stored in the list, but only if the list has a length greater than two. Finally, reprint the contents of the list.
Sample Run:
Please enter words, enter STOP to stop the loop. cup spoon fork bowl plate knife STOP 6 [cup, spoon, fork, bowl, plate, knife] [spoon, fork, bowl, plate]
Note: For this activity, you must use the class name, Main and the method, main.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started