Write a program in Java to accept a character. Check and print whether it is vowel or not.
Answers
Answered by
1
Answer:
import java.io.*;
public class Main
{
static boolean isVowel(char y)
{
if(y=='a' || y=='e' || y=='i' || y=='o' || y=='u' || y == 'A' || y == 'E' || y == 'I' ||y == 'O' ||y == 'U')
{
return true;
}
else
{
return false;
}
}
public static void main(String[] args) throws Exception {
System.out.print("Enter a char:");
char c = (char)System.in.read();
if(isVowel(c))
{
System.out.println("It is vowel");
}
else
{
System.out.println("It is not a vowel");
}
}
}
Explanation:
Similar questions
Computer Science,
2 months ago
Math,
2 months ago
Math,
4 months ago
Social Sciences,
9 months ago
Physics,
9 months ago