/ * Finds the first vowel in a word and returns its location * */
public static int findFirstVowel (String word) {
int consonant = 0;
for(int count = 0; count < word.length(); count++){
word.toUpperCase();
char letter1 = word.charAt(count);
String letter2 = (Character.toString(letter1));
if (isVowel(letter2) == true){
//consonant = 0;
return (count);
}
}
return (-1);
}**