Question: Thanks! (: /* PROBLEM 3 */ /*Given the following code, write all necessary statements within the main method. - Prompt the user for a string
Thanks! (:

/* PROBLEM 3 */ /*Given the following code, write all necessary statements within the main method. - Prompt the user for a string to be entered - Send the string tho the count_Vowels method - Display "the number of Vowels in the string are: #" Create the JavaDoc comments for the main, and count_Vowels methods. Be sure to describe what is happening in the count_Vowels method */ public class CodingAssignment2_P3 public static void main(String[] args) //YOUR STATEMENTS HERE public static int count_Vowels (String str) int count = 0; for (int i = 0; i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
