Program.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace KuzminBolshakovLab5
  7. {
  8. // Класс для вызова программы
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. Console.WriteLine("Введите значение x:");
  14. try
  15. {
  16. double x = double.Parse(Console.ReadLine());
  17. SolveClass sol = new SolveClass();
  18. sol.DriveCos();
  19. sol.DriveCot();
  20. sol.DriveTan();
  21. sol.DriveSec();
  22. sol.DriveLogBase();
  23. // Решение системы уравнений
  24. if (SolveClass.SolveSystem(x, out double leftResult, out double rightResult))
  25. {
  26. if (leftResult != double.MinValue)
  27. Console.WriteLine($"Первое уравнение: {leftResult}");
  28. if (rightResult != double.MinValue)
  29. Console.WriteLine($"Второе уравнение: {rightResult}");
  30. }
  31. else
  32. {
  33. Console.WriteLine("Система не может быть решена для заданного x.");
  34. }
  35. }
  36. catch (Exception ex)
  37. {
  38. Console.WriteLine($"Ошибка: {ex.Message}");
  39. }
  40. Console.ReadKey();
  41. }
  42. }
  43. }