diff --git a/NumberGuessGame/Program.cs b/NumberGuessGame/Program.cs index c385eb5..e944b37 100644 --- a/NumberGuessGame/Program.cs +++ b/NumberGuessGame/Program.cs @@ -26,7 +26,7 @@ public static void Main(string[] args) //This call will cause your program to wait for n milisecond before continuing! //Here n is 2000, which means 2 seconds - System.Threading.Thread.Sleep(2000); + System.Threading.Thread.Sleep(3000); //my change is here. //get random string int statement_number = (int)(r.NextDouble() * 5.0); @@ -49,7 +49,7 @@ public static void Main(string[] args) } } - System.Threading.Thread.Sleep(2000); + System.Threading.Thread.Sleep(3000); //and here int secret = (int)(r.NextDouble() * 100.0); Console.WriteLine("Great! We have our number! Now guess out of 100!");