Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            string bin = Console.ReadLine();

            Console.WriteLine(Solver.BinToDec(bin));
            Console.WriteLine(Solver.BinToDec_(bin));

            Console.WriteLine(Solver.BinToDec__(Solver.GetReverseString(bin)));

            Console.ReadKey(true);
        }