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

25 lines
537 B
C#
Raw Normal View History

2024-10-05 09:59:53 +03:00
using System;
/*
* Цикл do while
* Всегда выполняется один раз
* даже если условие цикла не выполянется
*/
class Program
{
static void Main()
{
int count = 5;
while (count < 5)
{
count++;
Console.WriteLine($"{count} Действие");
}
do
{
count++;
Console.WriteLine($"{count} Действие");
} while (count < 5);
Console.ReadKey();
}
}