LeRoY_Go

Untitled

Jun 28th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp5
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Console.Write("Введите сообщение: ");
  10. string userInput = Console.ReadLine();
  11. Console.Write("Количество повторений: ");
  12. int repeat = Convert.ToInt32(Console.ReadLine());
  13. for (int i = 0; i < repeat; i++)
  14. {
  15. Console.WriteLine(userInput);
  16. }
  17. Console.ReadKey();
  18. }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment