Advertisement
LeRoY_Go

Untitled

Jan 18th, 2022
783
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.55 KB | None | 0 0
  1. using System;
  2.  
  3. namespace C_Sharp_Junior
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string userInput = "";
  10.             Console.WriteLine("Для выхода из цыкла введите слово exit");
  11.             while (userInput != "exit")
  12.             {
  13.                 Console.Write("Введите сообщение: ");
  14.                 userInput = Console.ReadLine();
  15.             }
  16.             Console.Write("Вы вышли из цикла");
  17.             Console.ReadKey();
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement