public static void Main()
Console.WriteLine("100,000 Dice Pair Roller");
int[] count = new int[11];
Random rG = new Random();
for (int i = 0; i < 100000; i++) {
int dice1 = rG.Next(1, 7);
int dice2 = rG.Next(1, 7);
Console.WriteLine("Sums");
for (int i = 0; i < count.Length; i++) {
Console.WriteLine((i + 2) + ": ");
Console.WriteLine(" " + rolls + " rolls.");
Console.WriteLine(" {0:P2} percent.", (double) rolls / 100000);