Calculate The Vowels In The Given String Using Java

  1. // Vowels program  
  2.   
  3. import java.io.*;  
  4. import java.lang.String.*;  
  5. import java.text.*;  
  6.   
  7. class ssva26  
  8. {  
  9.     public static void main(String arg[]) throws IOException  
  10.     {  
  11.         String str;  
  12.         char s;  
  13.         int ch=0,l;  
  14.         BufferedReader inp = new BufferedReader(new InputStreamReader(System.in));  
  15.         System.out.println("\n\t\t\t\tCount the Vowels");  
  16.         System.out.println("\n\t\t\t\t~~~~~~~~~~~~~~~~");  
  17.         System.out.print("\nEnter the String:  ");  
  18.         str = inp.readLine();  
  19.         l=str.length();  
  20.         for(int i=0;i<l;i++)  
  21.         {  
  22.             s=str.charAt(i);  
  23.             if( (s=='a') || (s=='e') || (s=='i') || (s=='o') || (s=='u') )  
  24.             ch++;  
  25.         }  
  26.         System.out.println("\nNumber of vowels:  " + ch);  
  27.     }