Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp
- {
- class Program
- {
- static void Main(string[] args)
- {
- int quantityRepeatingPhrase;
- string userPhrase;
- Console.WriteLine("Какую бы фразу Вам хотелось увидеть?");
- userPhrase = Console.ReadLine();
- Console.WriteLine("Сколько раз нужно ее написать?");
- quantityRepeatingPhrase = Convert.ToInt32(Console.ReadLine());
- Console.WriteLine($"Итак Ваша фраза <<{userPhrase}>> и вы хотите ее видеть " +
- $"<<{quantityRepeatingPhrase}>> раз. Поехали!\n");
- for (int i = 0; i < quantityRepeatingPhrase; i++)
- {
- Console.WriteLine(userPhrase);
- }
- Console.WriteLine("\nСпасибо за внимание!");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement