Write a 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, your program should loop through the list and print out only the words that contain the letter "a". sample run: enter words, enter stop to stop the loop. dog zebra cat fish stop zebra cat

Solved
Show answers

Ask an AI advisor a question