Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Assignment 14.3: Vowels (10 pts) Write a program that takes in a sentence from the user and then counts the number of vowels in the
Assignment 14.3: Vowels (10 pts) Write a program that takes in a sentence from the user and then counts the number of vowels in the sentence The user should be able to enter as many sentences as desired You will need to use String.charAt), String.length), and two loops - a while loop and a for loop to solve this problem correctly. Open up a new Java project called Vowels First, welcome the user to the program and explain its purpose . Welcome! Give me a sentence and I will count its vowels. . Then prompt the user to enter a sentence Please enter a sentence or q to quit: Store the user input as a string variable . Now, using a for loop and the Stringlength() function, count how many vowels (a, e, , o, u) there are in the sentence Note that the program should also count capital vowels (A, E, I, O, U) Finally, output the number of vowels like so There are 5 vowels in your sentence. Next, place the prompt and for loop inside of a do-while loop so that the user can enter multiple sentences . If the user enters q, the loop should end and the program should print out a message "Goodbye!" Once your program is working identically to the examples below, submit it to Canvas The output of your program should look identical to the sample output below except user input may vary Welcome! Give me a sentence and I will count its vowels. Please enter a sentence or q to quit: Power to the people! There are 7 vowels in your sentence. Please enter a sentence or q to quit: Chillax! There are 2 vowels in your sentence. Please enter a sentence or q to quit: Animals are friends not food. There are 10 vowels in your sentence Please enter a sentence or q to quit: q Goodbye
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