We are going to share a Java program to print whether the given character is vowel or consonant. Please keep your close attention in this tutorial as I am going to share how to write a Java program to print whether the given character is vowel or consonant.
Copy the below Java program and execute it with the help of Javac compiler. At the end of this program, We have shared the output of this program.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | import java.util.Scanner; class Char { void findVowelOrNot(char ch) { if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u'||ch=='A' ||ch=='E'||ch=='I'||ch=='O'||ch=='U') { System.out.println("Entered character "+ch+" is Vowel"); } else if((ch>='a'&&ch<='z')||(ch>='A'&&ch<='Z')) System.out.println("Entered character "+ch+" is Consonent"); else System.out.println("Not an alphabet"); } public static void main(String[ ] arg) { Char c=new Char(); Scanner sc=new Scanner(System.in); System.out.println("Enter a character : "); char in=sc.next( ).charAt(0); c.findVowelOrNot(in); } } |
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.