예제 #1
0
        static void Main(string[] args)
        {
            Bolillero unBolillero = new Bolillero();

            // SOLO SE USAN 5 BOLILLAS PARA JUGAR
            List <int> bolillas = new List <int> {
                2, 4, 6, 1, 3
            };

            // CASO DE UNA SOLA JUGADA
            Console.WriteLine($"Gano: {unBolillero.unaJugada(bolillas)}");

            // CASO DE MAS DE UNA JUGADA
            Console.WriteLine($"Usted gano: {unBolillero.jugarNVeces(bolillas,1000000)} veces");
            informeBolillero(unBolillero);
        }
예제 #2
0
        static void Main(string[] args)
        {
            Console.Write("Ingrese la cantidad de bolillas que tiene el bolillero:");
            int cantBolillas = Convert.ToInt32(Console.ReadLine());

            Console.Write("Ingrese la cantidad de bolillas en una Jugada: ");
            int lengJugada = Convert.ToInt32(Console.ReadLine());

            Bolillero bolillero = new Bolillero(cantBolillas, lengJugada);

            bolillero.llenarBolillero();

            List <int> jugada = bolillero.sacarJugada();

            Console.WriteLine("Jugada:");

            for (int i = 0; i < 7; i++)
            {
                Console.WriteLine(jugada[i]);
            }

            bolillero.regresarBolillasSacadas();

            Console.WriteLine("Bolilla:");

            Console.WriteLine(bolillero.sacarBolilla());

            bolillero.regresarBolillasSacadas();

            Console.Write("Ingrese la cantidad de veces a jugar:");
            int vecesAJugar = Convert.ToInt32(Console.ReadLine());

            Console.WriteLine("Cantidad de veces que la jugada salió: {0}", bolillero.jugarNVeces(jugada, vecesAJugar));

            bolillero.regresarBolillasSacadas();

            for (int i = 0; i < bolillero.bolillasLista.Count; i++)
            {
                Console.WriteLine(bolillero.bolillasLista[i]);
            }
        }