Program.cs 885 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Diagnostics;
  3. using System.IO;
  4. namespace exzem1
  5. {
  6. public class Program
  7. {
  8. public static void Main(string[] args)
  9. {
  10. int a = 123;
  11. int b = 154;
  12. Program c = new Program();
  13. Console.WriteLine(c.resh(a, b));
  14. otvet(c.resh(a, b));
  15. DebugT.diagW(Convert.ToString(c.resh(a, b)));
  16. //Debug.WriteLine($"{Convert.ToString(c.resh(a, b))}");
  17. }
  18. public static double otvet(int otvet)// метод для записи ответа в файл
  19. {
  20. string[] line = new string[] { Convert.ToString(otvet) };
  21. File.WriteAllLines("Otvet.txt", line);
  22. //Result.resW(Convert.ToString(otvet));
  23. return otvet;
  24. }
  25. public int resh(int a, int b)
  26. {
  27. return a + b;
  28. }
  29. }
  30. }