Java Program to Check Whether an Alphabet is Vowel or Consonant
Java Program to Check Whether an Alphabet is Vowel or Consonant In this program, you’ll learn to check whether an alphabet is a vowel or a consotant using if..else and switch statement in Java. Example 1: Check whether an alphabet is vowel or consonant using if..else statement public class VowelConsonant { public static void main(String[]…
Read more