Esempio n. 1
0
        public void FirstAnswer()
        {
            int total = 0;

            for (int i = 0; i < 6; i++)
            {
                Cubes = Cubes.Cycle();
                total = Cubes.TotalActive();
                Console.WriteLine($"Active: {total}");
            }


            Console.WriteLine($"Active: {total}");
        }