Make your own free website on Tripod.com
woot apa

hmm what goes here

import console.EasyReader;
public class Vowels
{
 public static void main(String[] args)
 {
  EasyReader keyboard = new EasyReader();
  String[] vow = new String[10];
  
  
  for(int x = 0; x <= 9; x++)
  {
   System.out.print("Enter word " + (x + 1) + ">>");
   vow[x] = keyboard.readLine();
  }
  
 }
}

vowels

 

woot