lovelyvook

Unit_08

Mar 30th, 2024
894
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.61 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 Ijunior
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             string exit = "exit";
  14.             string userInput = "";
  15.  
  16.             Console.WriteLine($"Для выхода из программы введите {exit}");
  17.  
  18.             while (userInput != exit)
  19.             {
  20.                 Console.Write("Введите ваше сообщение: ");
  21.                 userInput = Console.ReadLine();
  22.             }
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment