Question: Microsoft Visual C# 2017 pages 347 Please keep these as basic as possible so that I can understand and follow how it was done. 8.
Microsoft Visual C# 2017 pages 347
Please keep these as basic as possible so that I can understand and follow how it was done.
8. Write a program named SortWords that includes a method that accepts any number of words and sorts them in alphabetical order. Demonstrate that the program works correctly when the method is called with one, two, five, and ten words.
MUST INCLUDE THE FOLLOWING:
string[] names = { "Tony", "Dominique", "Rick", "Cody", "Seth", "Nic", "Trazelle", "Chris", "Van", "Cindy" }; DisplayStrings("Phelan", "Trevor"); DisplayStrings("Reece", "Brian","Josh"); DisplayStrings("Caleb", "Joey", "Kyle", "Alex", "Kevin","Joshua"); DisplayStrings(names);
The result should look exactly like this screenshot:

CWindows system321cmd.exe Phelan Trevor Brian Josh Reece Alex Caleb Joey Joshua Kevin Kyle Chris Cindy Cody Dominique Nic Rick Seth Tony Trazelle Van Press any key to continue
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
