/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package vowel; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; /** * * @author print depot */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) throws IOException { // TODO code application logic here BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); char c; int ltr =0; char[] vowelStr={'a', 'A', 'e', 'E', 'i', 'I', 'o', 'O', 'u', 'U'}; //String copyFromMe="The quick brown fox jumps over the lazy dog"; System.out.print("Enter a word:"); String copyFromMe=br.readLine(); for (int i=0; i