Program.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Simple_method
  7. {
  8. internal class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. int kolOgr, kolPer;
  13. Console.WriteLine("Введите количество переменных");
  14. kolPer = Convert.ToInt32(Console.ReadLine());
  15. Console.WriteLine("Введите количество ограничений");
  16. kolOgr = Convert.ToInt32(Console.ReadLine());
  17. MethodClass obj = new MethodClass(kolOgr,kolPer);
  18. double[,] table = new double[kolOgr+1,kolPer+1];
  19. obj.input(table);
  20. //obj.output(table);
  21. Console.WriteLine("К чему стремиться целевая функция\n" +
  22. "1 - к минимуму\n" +
  23. "2 - к максимуму");
  24. int vibor = Convert.ToInt32(Console.ReadLine());
  25. switch(vibor)
  26. {
  27. case 1:
  28. obj.min(table);
  29. break;
  30. case 2:
  31. obj.max(table);
  32. break;
  33. }
  34. Console.ReadKey();
  35. }
  36. }
  37. }