Skip to content

Instantly share code, notes, and snippets.

@tigercubgames
Last active June 5, 2025 03:29
Show Gist options
  • Save tigercubgames/b44a7412882a6b18264938666f82ef56 to your computer and use it in GitHub Desktop.
Save tigercubgames/b44a7412882a6b18264938666f82ef56 to your computer and use it in GitHub Desktop.
Условные операторы и циклы. ДЗ: Контроль выхода
using System;
namespace Homework
{
internal class Program
{
static void Main(string[] args)
{
string wordForExit = "exit";
string userInput = "";
Console.WriteLine($"Программа завершит работу при вводе слова {wordForExit}.");
while (userInput != wordForExit)
{
userInput = Console.ReadLine();
}
Console.WriteLine("Программа завершена.");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment