Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Thank you for taking my feedback very positively @Rochieoreo :-)
Thank you, ill use that in further development. :)
Check @superklamer solutin, There is no need for "break" on each case! It all can be nest like the switch statement above. However, read my comment, I do like that approach
switch(strArray[incriment])
{
case 'e':
case 'a':
case 'i':
case 'o':
case 'u':
vowelCount++;
break;
default:
break;
}