Advertisement
IGRODELOFF

HW: Exit Control

Oct 30th, 2024 (edited)
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.85 KB | None | 0 0
  1. using System;
  2.  
  3. namespace homeWorkExitControl
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             bool doWantToLeave = false;
  10.  
  11.             string codeWordForExit = "ВЫХОД";
  12.             string userInput;
  13.  
  14.             while (doWantToLeave == false)
  15.             {
  16.                 Console.Write("Введите слово выход, если хотите выйти из программы: ");
  17.                 userInput = Console.ReadLine().ToUpper();
  18.  
  19.                 if (userInput == codeWordForExit)
  20.                 {
  21.                     doWantToLeave = true;
  22.                 }
  23.                 else
  24.                 {
  25.                     Console.Clear();
  26.                     Console.WriteLine("Ну что опять по новой!");
  27.                 }
  28.             }
  29.         }
  30.     }
  31. }
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement