Program.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. using System;
  2. /*
  3. //task 1
  4. int a, b,i;
  5. Console.WriteLine("Введите первое число");
  6. a = int.Parse(Console.ReadLine());
  7. Console.WriteLine("Введите второе число");
  8. b = int.Parse(Console.ReadLine());
  9. i = a + b;
  10. Console.WriteLine("Ответ = " + i);
  11. Console.Read();
  12. */
  13. /*
  14. //task 2
  15. int a, b, c;
  16. Console.WriteLine("Введите чему равна ширана");
  17. a = int.Parse(Console.ReadLine());
  18. Console.WriteLine("Введите чему равна высота");
  19. b = int.Parse(Console.ReadLine());
  20. Console.WriteLine("Введите чему равен радиус");
  21. c = int.Parse(Console.ReadLine());
  22. if (a >= c & b <= c)
  23. {
  24. Console.WriteLine("YES");
  25. }
  26. else if (a <= c & b <= c)
  27. {
  28. Console.WriteLine("NO");
  29. }
  30. */
  31. /*
  32. //task 3
  33. int a,b;
  34. Console.WriteLine("Введите первое число");
  35. a = int.Parse(Console.ReadLine());
  36. Console.WriteLine("Введите второе число");
  37. b = int.Parse(Console.ReadLine());
  38. if (a >= b)
  39. {
  40. Console.WriteLine(a + ">" + b);
  41. }
  42. else if (a <= b)
  43. {
  44. Console.WriteLine(a + "<" + b);
  45. }
  46. else if (a == b)
  47. {
  48. Console.WriteLine(a + "=" + b);
  49. }
  50. */
  51. /*
  52. //task 4
  53. int L, W, H, S;
  54. Console.WriteLine("Введите длину");
  55. L = int.Parse(Console.ReadLine());
  56. Console.WriteLine("Введите ширину");
  57. W = int.Parse(Console.ReadLine());
  58. Console.WriteLine("Введите высоту");
  59. H = int.Parse(Console.ReadLine());
  60. int banka = 16;
  61. S = 2*(L * H) + 2*(W * H);
  62. Console.WriteLine(S/16);
  63. */
  64. //task 5
  65. int a, b, n;
  66. Console.WriteLine("Введите первое число не больше 10:");
  67. a = int.Parse(Console.ReadLine());
  68. Console.WriteLine("Введите второе число не больше 10:");
  69. b = int.Parse(Console.ReadLine());
  70. n = (a + b) - 1;
  71. int first = n - a;
  72. int second = n - b;
  73. Console.WriteLine("Ответ = " + first + " " + second);