Advertisement
IvanOseledko

Homework8

Sep 6th, 2023
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.47 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Hw8
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             string userInputToExit = "";
  10.  
  11.             while (userInputToExit != "exit")
  12.             {
  13.                 Console.Write("Для выхода из программы введите exit: ");
  14.                 userInputToExit = Console.ReadLine();
  15.             }
  16.            
  17.             Console.WriteLine("\nПрограмма завершена.");
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement