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