12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Diagnostics;
- using System.IO;
- namespace exzem1
- {
- public class Program
- {
- public static void Main(string[] args)
- {
- int a = 123;
- int b = 154;
- Program c = new Program();
- Console.WriteLine(c.resh(a, b));
- otvet(c.resh(a, b));
- DebugT.diagW(Convert.ToString(c.resh(a, b)));
- //Debug.WriteLine($"{Convert.ToString(c.resh(a, b))}");
- }
- public static double otvet(int otvet)// метод для записи ответа в файл
- {
- string[] line = new string[] { Convert.ToString(otvet) };
- File.WriteAllLines("Otvet.txt", line);
- //Result.resW(Convert.ToString(otvet));
- return otvet;
- }
- public int resh(int a, int b)
- {
- return a + b;
- }
- }
- }
|