19 lines
352 B
C#
19 lines
352 B
C#
|
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();
|
|||
|
}
|
|||
|
}
|