Example #1
0
    public static void Main(string[] args)
    {
        Bingo b = new Bingo();

        b.Iniciar(10);
        for (int i = 0; i < 10; i++)
        {
            b.Proximo();
        }
        Console.WriteLine("Numeros do bingo:");
        foreach (int q in b.Sorteados())
        {
            Console.WriteLine(q);
        }

        Mega m = new Mega();

        m.Iniciar();
        for (int i = 0; i < 6; i++)
        {
            m.Proximo();
        }
        Console.WriteLine("Numeros da loteria:");
        foreach (int a in m.Sorteados())
        {
            Console.WriteLine(a);
        }
    }