Advertisement
OwlyOwl

dz-123

Jun 29th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.51 KB | None | 0 0
  1. using System;
  2.  
  3. namespace testing
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Console.WriteLine("Введи сообщение:");
  10.             string userInput = Console.ReadLine();
  11.             Console.WriteLine("Сколько раз вывести?");
  12.             int outputAmount = Convert.ToInt32(Console.ReadLine());
  13.             for (int i = 0; i < outputAmount; i++)
  14.             {
  15.                 Console.WriteLine(userInput);
  16.             }
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement