Program.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace trainingWork
  7. {
  8. internal class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. Console.WriteLine("Введите первое число: ");
  13. int a = Convert.ToInt32(Console.ReadLine());
  14. Console.WriteLine("Введите второе число: ");
  15. int b = Convert.ToInt32(Console.ReadLine());
  16. int c = a * b;
  17. Console.WriteLine($"Произведение числа {a} на число {b} = {c}");
  18. Console.ReadKey();
  19. }
  20. static void sum(string[] args)
  21. {
  22. Console.WriteLine("Введите первое число: ");
  23. int a = Convert.ToInt32(Console.ReadLine());
  24. Console.WriteLine("Введите второе число: ");
  25. int b = Convert.ToInt32(Console.ReadLine());
  26. int x = a + b;
  27. Console.WriteLine($"Сумма числа {a} на число {b} = {x}");
  28. Console.ReadKey();
  29. }
  30. }
  31. }