Skip to content

Instantly share code, notes, and snippets.

@Cyken-Zeraux
Created February 9, 2015 15:27
Show Gist options
  • Save Cyken-Zeraux/e72910d2c136f98ccb4e to your computer and use it in GitHub Desktop.
Save Cyken-Zeraux/e72910d2c136f98ccb4e to your computer and use it in GitHub Desktop.
char x;
int z = 0;
for (int i=0; i < word.length(); i++) {
x = word.toLowerCase().charAt(i);
if (x=='a' || x=='e' || x=='i' || x=='o' || x=='u') {
z++;
}
}
return z;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment