Ejemplo n.º 1
0
        public static void Main(string[] args)
        {
            Stack <int> stack = new Stack <int>();

            ConsoleTool.LoadStack(stack);

            while (stack.Count != 0)
            {
                System.Console.WriteLine(stack.Pop() + " ");
            }

            System.Console.WriteLine();
        }