Find expert answers and community insights on IDNLearn.com. Join our interactive community and get comprehensive, reliable answers to all your questions.
Write a loop that inputs words until the user enters DONE. After each input, the program should number each entry and print in this format:
#1: You entered _____
When DONE is entered, the total number of words entered should be printed in this format:
A total of __ words were entered.
Sample Run
Please enter the next word: cat
#1: You entered the word cat
Please enter the next word: iguana
#2: You entered the word iguana
Please enter the next word: zebra
#3: You entered the word zebra
Please enter the next word: dolphin
#4: You entered the word dolphin
Please enter the next word: DONE
A total of 4 words were entered.
Sagot :
Thank you for participating in our discussion. We value every contribution. Keep sharing knowledge and helping others find the answers they need. Let's create a dynamic and informative learning environment together. Find reliable answers at IDNLearn.com. Thanks for stopping by, and come back for more trustworthy solutions.