ranee

выход

Aug 30th, 2022 (edited)
881
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1. using System;
  2. namespace Lectures
  3. {
  4.     class Program
  5.     {
  6.         static void Main()
  7.         {
  8.             string command = "";
  9.             string stopWord = "exit";
  10.  
  11.             while (command != stopWord)
  12.             {
  13.                 Console.WriteLine($"Для выхода введите '{stopWord}'");
  14.                 command = Console.ReadLine();
  15.                 Console.Clear();
  16.             }
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment