Java Program to Check Whether an Alphabet is Vowel or Consonant using switch case

preview_player
Показать описание

Source Code:

public class Main {

public static void main(String[] args) {

switch (alphaLower) {
case "a":
case "e":
case "i":
case "o":
case "u":
break;
default:
}
}
}
Рекомендации по теме