Пример #1
0
        static void Main()
        {
            UInt32 variable;
            ExistingPowersOf2Service existingPowersOf2Service = new ExistingPowersOf2Service();

            Console.WriteLine("Please insert variables seperated by enters.");
            Console.WriteLine("To see the results type anything except number.");
            while (true)
            {
                if (UInt32.TryParse(Console.ReadLine(), out variable))
                {
                    existingPowersOf2Service.Decompose(variable);
                }
                else
                {
                    break;
                }
            }
            PrintResult(existingPowersOf2Service.GetResult());
        }
 public void TestSetup()
 {
     _existingPowersOf2Service = new ExistingPowersOf2Service();
 }