Sininerebane

Untitled

May 19th, 2023
1,280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.54 KB | Software | 0 0
  1. namespace ForCycle
  2. {
  3.     internal class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.  
  8.             Console.OutputEncoding = Encoding.UTF8;
  9.             int cycleCount;
  10.  
  11.             Console.Write("Введите количество повторов: ");
  12.             cycleCount = Convert.ToInt32(Console.ReadLine());
  13.  
  14.             for (int i = 0; i < cycleCount; i ++)
  15.             {
  16.                 Console.WriteLine("Это повтор цикла");
  17.             }
  18.  
  19.             Console.ReadKey();
  20.         }
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment