diff --git a/NumberGuessGame/Program.cs b/NumberGuessGame/Program.cs index 7117ef7..28a2987 100644 --- a/NumberGuessGame/Program.cs +++ b/NumberGuessGame/Program.cs @@ -62,13 +62,14 @@ public static void Main(string[] args) //Try to parse the int if (!int.TryParse(sGuess, out iGuess)){ //We couldn't make a number - Console.WriteLine("Look, you have to guess a number. No more funny Business!"); + Console.WriteLine("Look, you have to guess a number. No more funny business!"); continue; } //Okay, we have a valid int, but we need to make sure it's in range if (iGuess >= 100 || iGuess < 0){ - Console.WriteLine("That's not how this works! That's not how any of this works! Guess again!"); + Console.WriteLine("That's not how this works! That's not how any of this works!"); + Console.WriteLine("What kind of numbers do you think we're working with? Guess again!"); continue; } @@ -84,7 +85,8 @@ public static void Main(string[] args) if (iGuess == secret){ Console.WriteLine("Correct! You're a winner!"); Console.WriteLine("...Great, Now I can go home and nap!"); - Console.WriteLine("Shoo! Game's over! Go Away!"); + System.Threading.Thread.Sleep(4000); + Console.WriteLine("Are you still here? Shoo! Game's over! Go Away!"); Console.ReadKey(); break; }