0
/ 1
Given a string, compute recursively a new string where all vowels in the original string will now be in upper case in the new string. So...
Given a string, compute recursively a new string where all vowels in the original string will now be in upper case in the new string. So given "hello", return "hEllO".
We have defined a method for you named
boolean isVowel(char ch) that returns true if the
argument passed is a vowel (i.e. a, e, i, o, u).
Your feedback will appear here when you check your answer.