Write a program that asks the user to enter three names, and then display the name sorted in ascending order. For example if the user enterd "Charlie" , "Leslie" , and "Andy", the program would display:
Andy
Charlie
Leslie
Breaking it down
Create variables
Ask user for input
Sort collection
Display names
Output
Level Up
Enhance program to include the amount of time it took to sort names
Enhance output with a column heading
Display whether or not the names are already sorted