diff --git a/Projects/Dice Game/Program.cs b/Projects/Dice Game/Program.cs index 3c61b6c9..7d5e8217 100644 --- a/Projects/Dice Game/Program.cs +++ b/Projects/Dice Game/Program.cs @@ -5,6 +5,17 @@ Random random = new Random(); +Console.WriteLine("Dice Game"); +Console.WriteLine(); +Console.WriteLine("In this game you and a computer Rival will play 10 rounds"); +Console.WriteLine("where you will each roll a 6-sided dice, and the player"); +Console.WriteLine("with the highest dice value will win the round. The player"); +Console.WriteLine("who wins the most rounds wins the game. Good luck!"); +Console.WriteLine(); +Console.Write("Press any key to start..."); +Console.ReadKey(true); +Console.WriteLine(); +Console.WriteLine(); for (int i = 0; i < 10; i++) { Console.WriteLine("Press any key to roll the dice:");