Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions NumberGuessGame/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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!");
Expand Down