Write a program that repeatedly prompts the user to enter a word and checks whether the word starts with a vowel (a, e, i, o, u). The program should display a message indicating whether the word starts with a vowel or not. The user can exit the program by entering a minus sign ("-").
Below is a for loop that works. Underneath the for loop, rewrite the problem so that it does the same thing, but using a while loop instead of a for loop. Assign the accumulated total in the while loop code to the variable sum2. Once complete, sum2 should equal sum1.