write a program in java, using the switch statement, to determine if an entered alphabet is vowel or a consonant
Answers
Answer:
Check whether an alphabet is vowel or consonant using if..else statement
public class VowelConsonant { public static void main(String[] args) { char ch = 'i'; if(ch == 'a' || ch == 'e' || ch == 'i' || ch == 'o' || ch == 'u' ) System.out.println(ch + " is vowel"); else System.out.println(ch + " is consonant"); } }
When you run the program, the output will be:
i is vowel
In the above program, 'i' is stored in a char variable ch. In Java, you use double quotes (" ") for strings and single quotes (' ') for characters.
Now, to check whether ch is vowel or not, we check if ch is any of: ('a', 'e', 'i', 'o', 'u'). This is done using a simple if..else statement.
We can also check for vowel or consonant using a switch statement in Java.
Hope this is helpful to u
If So, then plz mark me as brainlist and follow me
Answer is in attachment of my computer screen