//Programmer:
//Dates:
//Project:
//Description:
using System;
public class Program
{
public static void Main()
Console.WriteLine("Welcome to Lucky 14's");
Console.WriteLine("Press any key to begin");
start:
Console.ReadLine();
Random rG = new Random(); //initial the random generator
int d1, d2, d3, d4; //???????????????
int sum =0;
int n14s=0;
int nTosses=0;
//repeat until I have 14000 14's rolled
//need to keep track of the number of tosses
d1 =rG.Next (1,7); //rolls
d2 =rG.Next (1,7);
d3 =rG.Next (1,7);
d4 =rG.Next (1,7);
sum =d1+d2+d3+d4;
//check to see if 14?
Console.WriteLine(sum);
goto start;
}