VIzlo

Base 2

Mar 1st, 2024 (edited)
567
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.41 KB | Gaming | 0 0
  1. using System;
  2.  
  3. internal class Program
  4. {
  5.     static void Main(string[] args)
  6.     {
  7.         string inputText = "";
  8.         string exitProgram = "exit";
  9.  
  10.         while (inputText != exitProgram)
  11.         {
  12.             Console.Clear();
  13.  
  14.             Console.Write($"Для выхода из программы укажите *{exitProgram}*: ");
  15.             inputText = Console.ReadLine();
  16.         }
  17.     }
  18. }
Tags: ijunior
Advertisement
Add Comment
Please, Sign In to add comment