/* * 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; /* * Цикл while */ class Program { static void Main() { int count = 0; int.TryParse(Console.ReadLine(), out int limit); while (count < limit) { count++; Console.WriteLine($"{count} Выполняем действия"); } Console.ReadKey(); } }