Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
Random asterisk generator 1) Download Lab7PartE.java and save it to the usual directory. This program is an empty shell that does nothing.
Now, add some tests inside your while loop to test whether you are hitting the vowels. Figure
out how to use the ASCII codes for the uppercase versions of the vowels and print them out
instead of the lowercase versions. Note that this can be done by writing five separate if
statements, but it can also be done by writing one if statement, with a condition of the form (
test1 || test2 || test3 || test4 || test5), where || means 'or'.