/* * Author: Nikolay Dvurechensky * Site: https://www.dvurechensky.pro/ * Gmail: dvurechenskysoft@gmail.com * Last Updated: 12 мая 2025 02:47:11 * Version: 1.0.3 */ using System; /* * ключевое слово break */ class Program { static void Main() { for (int i = 0; i < 100; i++) { Console.WriteLine(i); string msg = Console.ReadLine(); if (msg == "exit") break; else if (i == 10) break; } Console.ReadKey(); } }