IGRODELOFF

Task7

Mar 4th, 2022 (edited)
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.75 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Task7
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int userInput;
  14.             string message;
  15.  
  16.             Console.WriteLine("Введите то, что хотите сообщить: ");
  17.             message = Console.ReadLine();
  18.  
  19.             Console.Write("Введите сколько раз вы хотите поздравить человека: ");
  20.             userInput = Convert.ToInt32(Console.ReadLine());
  21.  
  22.             for (int i = 0; i < userInput; i++)
  23.             {
  24.                 Console.WriteLine(message);
  25.             }
  26.         }
  27.     }
  28. }
  29.  
Add Comment
Please, Sign In to add comment