Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- string userInput;
- int repeat ;
- Console.Write("Введите сообщение:");
- userInput = Console.ReadLine();
- Console.Write("Введите кол-во повторений:");
- repeat = Convert.ToInt32(Console.ReadLine());
- while (repeat-- > 0)
- {
- Console.WriteLine(userInput);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement