AdemDev

Контроль выхода

Aug 30th, 2023 (edited)
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp
  4. {
  5. internal class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. string command;
  10. bool isProgramWorking = true;
  11.  
  12. while (isProgramWorking)
  13. {
  14. Console.Write("Введите команду: ");
  15. command = Console.ReadLine();
  16.  
  17. if (command == "exit")
  18. {
  19. isProgramWorking = false;
  20. Console.WriteLine("Работа программы завершена!");
  21. }
  22. else
  23. {
  24. Console.WriteLine($"Вы ввели команду {command}");
  25. }
  26. }
  27. }
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment