Code:
Console.WriteLine("Please fill in a line of words:");
string st = Console.ReadLine(); // type the words
//string[] words = st.Split(new char[] { char.Parse(" ") }); // split up the words
string[] words = st.Split(' ');
if (words.Length == 1)
{
Leave a comment: