Anonim_999

6

Dec 22nd, 2022
826
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp27
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int counter = 0;
  10.  
  11.             do
  12.             {
  13.                 counter++;
  14.                 Console.WriteLine($"Текущее значение счетчика: {counter}");
  15.             } while (counter < 5);
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment