Program.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* int a, b;
  2. Console.WriteLine("Введите число А");
  3. a = int.Parse(Console.ReadLine());
  4. Console.WriteLine("Введите число B");
  5. b = int.Parse(Console.ReadLine());
  6. Console.WriteLine("Сумма чисел равна ");
  7. Console.Write(a + b); */
  8. /*int a, b, c;
  9. Console.Write("Введите число от 0 до 10:");
  10. a = int.Parse(Console.ReadLine());
  11. if (a >= 11)
  12. {
  13. Console.WriteLine("Число введено неверно ");
  14. return;
  15. }
  16. Console.Write("Введите число от 0 до 10:");
  17. b = int.Parse(Console.ReadLine());
  18. if (b >= 11)
  19. {
  20. Console.WriteLine("Число введено неверно ");
  21. return;
  22. }
  23. c = (a + b) - 1;
  24. int one = c - a;
  25. int two = c - b;
  26. Console.WriteLine("Ответ = " + one + " " + two);*/
  27. /* int num1, num2;
  28. Console.WriteLine("Введите число А");
  29. num1 = int.Parse(Console.ReadLine());
  30. Console.WriteLine("Введите число B");
  31. num2 = int.Parse(Console.ReadLine());
  32. if (num1 >= num2)
  33. {
  34. Console.WriteLine("Число A оказалось больше ");
  35. Console.WriteLine(">");
  36. }
  37. else if (num1 <= num2)
  38. {
  39. Console.WriteLine("Число B оказалось больше ");
  40. Console.WriteLine("<");
  41. }
  42. if (num1 == num2)
  43. {
  44. Console.WriteLine("Число B и A оказались одинаковыми ");
  45. Console.WriteLine("=");
  46. }
  47. */
  48. /* int a, b, c, f;
  49. Console.Write("Введите число А");
  50. a = int.Parse(Console.ReadLine());
  51. Console.WriteLine("Введите число B");
  52. b = int.Parse(Console.ReadLine());
  53. Console.Write("Введите число C ");
  54. c = int.Parse(Console.ReadLine());
  55. Console.Write("Введите число B ");
  56. f = int.Parse(Console.ReadLine());
  57. Console.WriteLine(f + " " + c + " " + " " + b);*/
  58. /*int a, b, c, f, s = 16;
  59. Console.Write("Введите длинну стены ");
  60. a = int.Parse(Console.ReadLine());
  61. Console.Write("Введите ширину стены ");
  62. b = int.Parse(Console.ReadLine());
  63. Console.Write("Введите высоту стены ");
  64. c = int.Parse(Console.ReadLine());
  65. f = (a * c) * 2 + (b * c) * 2;
  66. Console.WriteLine( f/s + " банок красок необходимо");*/