Exemplo n.º 1
0
        static void Main(string[] args)
        {
            LR sir = new LR();

            sir.Read();
            sir.Right();
            sir.Left();
            sir.numereLR();
        }
Exemplo n.º 2
0
        static void Main()
        {
            LR prob = new LR("input.txt");

            prob.Read();
            prob.Right();
            prob.Left();
            prob.Print();

            Console.ReadKey();
        }