Computer Science, asked by Tammy001, 11 months ago

write a program in Java to input any sentence and print the occurrence of each vowel in it​

Answers

Answered by venkataniveditha1997
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