Programming Examples

Java program to check whether input character is vowel or consonant


Write a Java Program to input one character from user and check whether input character is Vowel or Consonant. 

Solution

import java.util.Scanner;
public class VowelConsonantCheck 
{
    public static void main(String[] args) 
	{
        Scanner scanner = new Scanner(System.in);
        System.out.print("Enter a character: ");
        char ch = scanner.next().toLowerCase().charAt(0);
        String result = (ch == 'a' || ch == 'e' || ch == 'i' || ch == 'o' || ch == 'u') ? "Vowel" :
                        (Character.isLetter(ch) ? "Consonant" : "Invalid input");
        System.out.println("The character '" + ch + "' is a " + result + ".");
    }
}
Output

Online Exam Quiz for One day Exam Online Typing Test CCC Online Test 2026 Best Computer Training Institute in Prayagraj (Allahabad) Best Java Training Institute in Prayagraj (Allahabad) Best Python Training Institute in Prayagraj (Allahabad) O Level Online Test in Hindi Best Website and Software Company in Allahabad