public static void Main()
Console.WriteLine("How many times would you like to roll the dice?");
string dice = Console.ReadLine();
if (ulong.TryParse(dice, out number))
Console.Write("You rolled the following: ");
for (ulong i = 1; i <= number; i++)
decimal q = r.Next(2, 13);
Console.WriteLine("Please enter a valid number. Press ENTER to retry");
decimal d1 = count1 / number * 100;
decimal d2 = count2 / number * 100;
decimal d3 = count3 / number * 100;
decimal d4 = count4 / number * 100;
decimal d5 = count5 / number * 100;
decimal d6 = count6 / number * 100;
Console.WriteLine("You rolled a 1 " + d1.ToString("##.#0") + "% of the time.");
Console.WriteLine("You rolled a 2 " + d2.ToString("##.#0") + "% of the time.");
Console.WriteLine("You rolled a 3 " + d3.ToString("##.#0") + "% of the time.");
Console.WriteLine("You rolled a 4 " + d4.ToString("##.#0") + "% of the time.");
Console.WriteLine("You rolled a 5 " + d5.ToString("##.#0") + "% of the time.");
Console.WriteLine("You rolled a 6 " + d6.ToString("##.#0") + "% of the time.");
Console.WriteLine("Would you like to run the program again? yes/no");
string choice = Console.ReadLine();
if (choice == "yes" || choice == "Yes")
else if (choice == "no" || choice == "No")
Console.WriteLine("Hope you enjoyed!");