kwest87

Untitled

Dec 25th, 2023
844
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.70 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApp8
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Console.Write("Укажите фразу : ");
  14.             string phrase = Console.ReadLine();
  15.             Console.WriteLine();
  16.             Console.Write("Укажите количество повторений : ");
  17.             int repetitions  = Convert.ToInt32(Console.ReadLine());
  18.             Console.WriteLine();
  19.  
  20.             for (int i = 0; i < repetitions; i++)
  21.             {
  22.                 Console.WriteLine(phrase);
  23.             }
  24.         }
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment