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<size; i++)
{
n[i] = Convert.ToInt32(Console.ReadLine());
}
Program avr = new Program();
avr.SortAndDisplayWords(n);
Console.Read();
}

public static void SortAndDisplayWords(params string[] words)
{
WriteLine("help");

Step by Step Solution

3.28 Rating (157 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

It looks like youre implementing a program with the intention to sort words but there are a few errors and areas for improvement in your code Lets wal... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!