Program.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. // "Пятью пять - двадцать пять!"
  2. /*
  3. int a,b,c;
  4. Console.WriteLine("Введите число, оканчивающиеся на 5, которое хотите возвести в квадрат:");
  5. a = int.Parse(Console.ReadLine());
  6. b = a / 10;
  7. c = b * (b + 1);
  8. Console.WriteLine("Ответ:"+c+"25");
  9. Console.WriteLine("Press ENTER to continue");
  10. Console.ReadLine();
  11. */
  12. // "Бинарные числа"
  13. /*
  14. int N;
  15. Console.WriteLine("Введите число:");
  16. N = int.Parse(Console.ReadLine());
  17. if (N % 2 == 0)
  18. Console.WriteLine("YES");
  19. else Console.WriteLine("NO");
  20. */
  21. // Больше - меньше
  22. /*
  23. int A;
  24. int B;
  25. Console.WriteLine("Введите первое число:");
  26. A = int.Parse(Console.ReadLine());
  27. Console.WriteLine("Введите второе число:");
  28. B = int.Parse(Console.ReadLine());
  29. if (A<B)
  30. Console.WriteLine("<");
  31. if (A>B)
  32. Console.WriteLine(">");
  33. if (A==B)
  34. Console.WriteLine("=");
  35. Console.ReadLine();
  36. */
  37. // "Монетки"
  38. /*
  39. Console.WriteLine("Введите кол-во монеток:");
  40. int kolvo = int.Parse(Console.ReadLine());
  41. Console.WriteLine("Введите стороны монеток через пробел Орел или Решка:");
  42. string sides1 = Console.ReadLine();
  43. string[] sides = sides1.Split(' ');
  44. int reshka = 0;
  45. int orel = 0;
  46. foreach (var a in sides)
  47. {
  48. if (a == "Решка")
  49. reshka = reshka + 1;
  50. else if (a == "Орел")
  51. orel = orel + 1;
  52. }
  53. if (orel>reshka)
  54. Console.WriteLine("Нужно перевернуть монеток:"+reshka);
  55. else Console.WriteLine("Нужно перевернуть монеток:"+orel);
  56. Console.ReadLine();
  57. */
  58. // "Автобусная экскурсия"
  59. using static System.Console;
  60. WriteLine("Введите количество мостов на пути:");
  61. int kolvomostov = int.Parse(ReadLine());
  62. WriteLine("Введите высоту мостов на пути:");
  63. string mosts = ReadLine();
  64. string[] most = mosts.Split(' ');
  65. bool b;
  66. int numbermost = 0;
  67. for (int i = 0; i < most.Length; i++)
  68. {
  69. if(Convert.ToInt32(most[i]) > 437)
  70. {
  71. numbermost = i + 1;
  72. WriteLine("Crash: "+numbermost);
  73. break;
  74. }
  75. }
  76. WriteLine("No crash");