Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- internal class Program
- {
- static void Main(string[] args)
- {
- int numberOfRepetitions;
- Console.Write("Сколько раз тебе повторить: ");
- numberOfRepetitions = Convert.ToInt32(Console.ReadLine());
- for (int i = 0; i < numberOfRepetitions; i++)
- {
- Console.WriteLine("Я же тебе говорил!");
- }
- Console.ReadKey();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment