Advertisement
vovanhik_24

#8

Aug 19th, 2023 (edited)
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.47 KB | None | 0 0
  1.         static void Main(string[] args)
  2.         {
  3.             Console.Write("Введите сообщение: ");
  4.             string inputMessage = Console.ReadLine();
  5.  
  6.             Console.Write("Введите количество итераций: ");
  7.             int iterationCount = Convert.ToInt32(Console.ReadLine());
  8.  
  9.             for(int i = 0; i < iterationCount; i++)
  10.             {
  11.                 Console.WriteLine(inputMassage);
  12.             }
  13.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement