We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1ada2d commit f3b01e8Copy full SHA for f3b01e8
Projects/Dice Game/Program.cs
@@ -5,6 +5,17 @@
5
6
Random random = new Random();
7
8
+Console.WriteLine("Dice Game");
9
+Console.WriteLine();
10
+Console.WriteLine("In this game you and a computer Rival will play 10 rounds");
11
+Console.WriteLine("where you will each roll a 6-sided dice, and the player");
12
+Console.WriteLine("with the highest dice value will win the round. The player");
13
+Console.WriteLine("who wins the most rounds wins the game. Good luck!");
14
15
+Console.Write("Press any key to start...");
16
+Console.ReadKey(true);
17
18
19
for (int i = 0; i < 10; i++)
20
{
21
Console.WriteLine("Press any key to roll the dice:");
0 commit comments