From 439c60b948de79169d8adb01411cd0cb77e02e89 Mon Sep 17 00:00:00 2001 From: phillipdillard <30579172+phillipdillard@users.noreply.github.com> Date: Thu, 3 Aug 2017 15:19:03 -0700 Subject: [PATCH 1/2] changed to 200 --- NumberGuessGame/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NumberGuessGame/Program.cs b/NumberGuessGame/Program.cs index 7117ef7..cd2742a 100644 --- a/NumberGuessGame/Program.cs +++ b/NumberGuessGame/Program.cs @@ -49,7 +49,7 @@ public static void Main(string[] args) } System.Threading.Thread.Sleep(2000); - int secret = (int)(r.NextDouble() * 100.0); + int secret = (int)(r.NextDouble() * 200.0); Console.WriteLine("Great! We have our number! Now guess out of 100!"); From f8a26ff7bb323f56f5d388b3bf90d174a33dc729 Mon Sep 17 00:00:00 2001 From: phillipdillard <30579172+phillipdillard@users.noreply.github.com> Date: Thu, 3 Aug 2017 15:46:32 -0700 Subject: [PATCH 2/2] changed winning headline --- NumberGuessGame/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NumberGuessGame/Program.cs b/NumberGuessGame/Program.cs index cd2742a..564e8d5 100644 --- a/NumberGuessGame/Program.cs +++ b/NumberGuessGame/Program.cs @@ -82,7 +82,7 @@ public static void Main(string[] args) } if (iGuess == secret){ - Console.WriteLine("Correct! You're a winner!"); + Console.WriteLine("Winner Winner Chicken Dinner!"); Console.WriteLine("...Great, Now I can go home and nap!"); Console.WriteLine("Shoo! Game's over! Go Away!"); Console.ReadKey();