Пример #1
0
        static void Main(string[] args)
        {
            Parser temp = new Parser();
            Lab4   lab;

            string func;

            double[] x;

            Vector minpoint;

            do
            {
                Console.WriteLine("Введите функцию");
                func = Console.ReadLine();

                x = new double[Convert.ToInt32(temp.CheckParse(func))];

                for (int i = 0; i < x.Length; i++)
                {
                    Console.WriteLine("Введите X" + i);
                    x[i] = Convert.ToInt32(Console.ReadLine());
                }

                lab = new Lab4(func, new Vector(x));

                minpoint = lab.Start();
                Console.WriteLine("Минимум в точке: " + minpoint.printVector() + " и равен " + temp.Parse(func, minpoint.ch.ToArray()));
            } while (true);
        }
Пример #2
0
 static void Main(string[] args)
 {
     try
     {
         Lab4 L4 = new Lab4();
         L4.Factorial();
         Console.ReadLine();
     }
     catch
     { Console.WriteLine("You done and messed up A-A-Ron!"); }
 }