QuadraticEquation.cs 1.1 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 Library9Delegates
  7. {
  8. delegate double SumRoots(double a, double b, double c);
  9. internal class QuadraticEquation
  10. {
  11. /// <summary>
  12. /// Экземпляр делегата с анонимным методом
  13. /// </summary>
  14. public SumRoots getSumRoots = delegate (double a, double b, double c)
  15. {
  16. double D = Math.Pow(b,2) - 4 * a * c;
  17. if (D < 0)
  18. {
  19. return 0; // Нет корней
  20. }
  21. else
  22. {
  23. double root1 = (-b + Math.Sqrt(D)) / (2 * a);
  24. double root2 = (-b - Math.Sqrt(D)) / (2 * a);
  25. return root1 + root2;
  26. }
  27. };
  28. /// <summary>
  29. /// Экземпляр делегата с лямда-выражением
  30. /// </summary>
  31. public SumRoots getSumRootsLambda = (a, b, c) =>
  32. {
  33. double D = Math.Pow(b, 2) - 4 * a * c;
  34. if (D < 0)
  35. {
  36. return 0; // Нет корней
  37. }
  38. else
  39. {
  40. double root1 = (-b + Math.Sqrt(D)) / (2 * a);
  41. double root2 = (-b - Math.Sqrt(D)) / (2 * a);
  42. return root1 + root2;
  43. }
  44. };
  45. }
  46. }