CS0401 COE0401 Intermediate Java Programming

This code is in Methods.java. 12. Write a recursive method that will count the number of vowels in a string. Hint: Each time you make a recursive call, use the String method substring to construct a new string consisting of the second through last characters. The final call will be when the string contains no characters. Solution: ................
................