예제 #1
0
파일: Program.cs 프로젝트: avs1/calculator
        public static void Main(string[] args)
        {
            var calc = new Calculator();

            while (true)
            {
                Console.WriteLine("Введите выражение:");
                string temp = Console.ReadLine();
                Console.WriteLine("Результат:" + calc.CalculateExpression(temp).ToString());
            }
        }