12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- // "Пятью пять - двадцать пять!"
- /*
- int a,b,c;
- Console.WriteLine("Введите число, оканчивающиеся на 5, которое хотите возвести в квадрат:");
- a = int.Parse(Console.ReadLine());
- b = a / 10;
- c = b * (b + 1);
- Console.WriteLine("Ответ:"+c+"25");
- Console.WriteLine("Press ENTER to continue");
- Console.ReadLine();
- */
- // "Бинарные числа"
- /*
- int N;
- Console.WriteLine("Введите число:");
- N = int.Parse(Console.ReadLine());
- if (N % 2 == 0)
- Console.WriteLine("YES");
- else Console.WriteLine("NO");
- */
- // Больше - меньше
- /*
- int A;
- int B;
- Console.WriteLine("Введите первое число:");
- A = int.Parse(Console.ReadLine());
- Console.WriteLine("Введите второе число:");
- B = int.Parse(Console.ReadLine());
- if (A<B)
- Console.WriteLine("<");
- if (A>B)
- Console.WriteLine(">");
- if (A==B)
- Console.WriteLine("=");
- Console.ReadLine();
- */
- // "Монетки"
- /*
- Console.WriteLine("Введите кол-во монеток:");
- int kolvo = int.Parse(Console.ReadLine());
- Console.WriteLine("Введите стороны монеток через пробел Орел или Решка:");
- string sides1 = Console.ReadLine();
- string[] sides = sides1.Split(' ');
- int reshka = 0;
- int orel = 0;
- foreach (var a in sides)
- {
- if (a == "Решка")
- reshka = reshka + 1;
- else if (a == "Орел")
- orel = orel + 1;
- }
- if (orel>reshka)
- Console.WriteLine("Нужно перевернуть монеток:"+reshka);
- else Console.WriteLine("Нужно перевернуть монеток:"+orel);
- Console.ReadLine();
- */
- // "Автобусная экскурсия"
- using static System.Console;
- WriteLine("Введите количество мостов на пути:");
- int kolvomostov = int.Parse(ReadLine());
- WriteLine("Введите высоту мостов на пути:");
- string mosts = ReadLine();
- string[] most = mosts.Split(' ');
- bool b;
- int numbermost = 0;
- for (int i = 0; i < most.Length; i++)
- {
- if(Convert.ToInt32(most[i]) > 437)
- {
- numbermost = i + 1;
- WriteLine("Crash: "+numbermost);
- break;
- }
- }
- WriteLine("No crash");
|