BasicKnowledgeCSharp/LessonsAndTasks/Lesson 16 - Цикл while/Program.cs

19 lines
352 B
C#
Raw Normal View History

2024-10-05 09:59:53 +03:00
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();
}
}