Skip to content

Instantly share code, notes, and snippets.

@Attosius
Last active August 29, 2025 19:42
Show Gist options
  • Save Attosius/4b8c61b6f90bb1ed50ce33462b0feeff to your computer and use it in GitHub Desktop.
Save Attosius/4b8c61b6f90bb1ed50ce33462b0feeff to your computer and use it in GitHub Desktop.
ДЗ: Контроль выхода
using System;
namespace IJuniorTasks
{
internal class Program
{
static void Main(string[] args)
{
var wordForExit = "exit";
string userInput = null;
while (userInput != wordForExit)
{
Console.Write($"Введите текст: ");
userInput = Console.ReadLine();
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment