Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleApp8
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- Console.Write("Укажите фразу : ");
- string phrase = Console.ReadLine();
- Console.WriteLine();
- Console.Write("Укажите количество повторений : ");
- int repetitions = Convert.ToInt32(Console.ReadLine());
- Console.WriteLine();
- for (int i = 0; i < repetitions; i++)
- {
- Console.WriteLine(phrase);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment