Question: Write a program named SortWords that includes a method named SortAndDisplayWords that accepts any number of words, sorts them in alphabetical order, and displays the
Write a program named SortWords that includes a method named SortAndDisplayWords that accepts any number of words, sorts them in alphabetical order, and displays the sorted words separated by spaces.
I am getting close?
using System; using static System.Console; public class SortWords { public static void Main(string[] args) { Console.WriteLine("How many words to you want to sort?"); int size = Convert.ToInt32(Console.Readline()); int[] n = new int[size]; Console.WriteLine("Enter"+ size + " words into array."); for(int i=0; i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
