SORT MY WORD PROGRAM
Option A: 30 pts
public class SortMyWords{
public static void main (String[] args)
{
ReadInMyWords();
SortMyWord();
PrintMyList();
}
}
Option B: 40 pts.
public class SortMyWords{
public static void main (String[] args)
{
SetArrayLength();
ReadInMyWords();
SortMyWord();
PrintMyList();
}
}