Problem with finding vowels with recursionThank you, I see now. I just had to have "return", before the function call.
Problem with finding vowels with recursionI am using recursion because this is an exercise in a class. I am fairly certain that using the [] i...
Problem with finding vowels with recursionbool containsVowel(string blah){ if (blah == ""){ return false; } else if (blah[0] == 'a'...
This user does not accept Private Messages