Java Program to Check if Input is a Vowel
This fun Java Program will check the users input and output whether it is a Vowel or Consonant
import java.util.Scanner;
class Vowel {
public static void main(String[ ] arg) {
boolean isVowel=false;
Scanner scanner=new Scanner(System.in);
System.out.println("Enter a character : ");
char ch=scanner.next().charAt(0); scanner.close();
switch(ch) {
case 'a' :
case 'e' :
case 'i' :
case 'o' :
case 'u' :
case 'A' :
case 'E' :
case 'I' :
case 'O' :
case 'U' :
isVowel = true; }
if(isVowel == true) {
System.out.println(ch+" is a Vowel"); }
else {
if((ch>='a'&&ch<='z')||(ch>='A'&&ch<='Z'))
System.out.println(ch+" is a Consonant"); else
System.out.println("Input is not an alphabet"); } } }
Comments
Post a Comment