write a program in Java to input any sentence and print the occurrence of each vowel in it
Answers
Answered by
2
Answer:
Class A
{
Public static void main (String [] args)
{
Char ch;
if(ch=='a' ¦¦ch=='e' ¦¦ch=='i' ¦¦ch=='o' ¦¦ch=='u')
{
System.out.println (ch) ;
}
}
}
Similar questions