Пример #1
0
        public static void Task_two()
        {
            double a, b, c;

            Console.WriteLine("Введите а");
            a = double.Parse(Console.ReadLine());
            Console.WriteLine("Введите b");
            b = double.Parse(Console.ReadLine());
            Console.WriteLine("Введите c");
            c = double.Parse(Console.ReadLine());
            Polynomial x = new Polynomial(a, b, c);

            Console.WriteLine("У многочлена: " + x.Answers() + "\n0: Вернуться в меню");
            Console.ReadLine();
        }