Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Homework7
- {
- class Program
- {
- static void Main(string[] args)
- {
- int repeats;
- string message;
- Console.Write("Укажите сообщение, которое вы хотите вывести:");
- message = Console.ReadLine();
- Console.Write("Сколько раз вы хотите eго вывести:");
- repeats = Convert.ToInt32(Console.ReadLine());
- while (repeats-- > 0)
- {
- Console.WriteLine(message);
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment