Program.cs 660 B

12345678910111213141516171819202122232425262728293031
  1. using ClassificationOnLevelDetalization;
  2. using System.Runtime.CompilerServices;
  3. Class1 class1 = new Class1();
  4. //class1.DriverGetCos(3.14);
  5. //class1.DriverGetSec(3.14);
  6. //class1.DriverGetTan(3.14);
  7. //class1.DriverGetCot(3.14);
  8. class1.DriverGetLog(2, 8);
  9. //class1.DriverFirst(-3.14);
  10. //class1.DriverSecond(2);
  11. //while (true)
  12. //{
  13. // Console.WriteLine("\nВведите х, чтобы выйти введите 0 или 1");
  14. // double x = Convert.ToDouble(Console.ReadLine());
  15. // if (x < 0)
  16. // {
  17. // class1.First(x);
  18. // }
  19. // else if (x > 1)
  20. // {
  21. // class1.Second(x);
  22. // }
  23. // else
  24. // {
  25. // break;
  26. // }
  27. //}