I have a program which has the user inputs a list of names. I have a switch case going to a function which I would like to have the names print off in alphabetical order.
public static String[] textSort(String[] words) { for (int i = 0; i < words.length; i++) { for (int j = i + 1; j < words.length; j++) { if (words[i].compareTo(words[j]) > 0) { String temp = words[i]; words[i] = words[j]; words[j] = temp; } } } return words; }