NikaBang

ДЗ: Освоение циклов

Oct 5th, 2025
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | Gaming | 0 0
  1. internal class Program
  2. {
  3.     static void Main(string[] args)
  4.     {
  5.         int numberOfRepetitions;
  6.  
  7.         Console.Write("Сколько раз тебе повторить: ");
  8.         numberOfRepetitions = Convert.ToInt32(Console.ReadLine());
  9.  
  10.         for (int i = 0; i < numberOfRepetitions; i++)
  11.         {
  12.             Console.WriteLine("Я же тебе говорил!");
  13.         }
  14.  
  15.         Console.ReadKey();
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment