1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Simple_method
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int kolOgr, kolPer;
- Console.WriteLine("Введите количество переменных");
- kolPer = Convert.ToInt32(Console.ReadLine());
- Console.WriteLine("Введите количество ограничений");
- kolOgr = Convert.ToInt32(Console.ReadLine());
- MethodClass obj = new MethodClass(kolOgr,kolPer);
- double[,] table = new double[kolOgr+1,kolPer+1];
- obj.input(table);
- //obj.output(table);
- Console.WriteLine("К чему стремиться целевая функция\n" +
- "1 - к минимуму\n" +
- "2 - к максимуму");
- int vibor = Convert.ToInt32(Console.ReadLine());
- switch(vibor)
- {
- case 1:
- obj.min(table);
- break;
- case 2:
- obj.max(table);
- break;
- }
-
- Console.ReadKey();
- }
- }
- }
|