Skip to content

Instantly share code, notes, and snippets.

@ALJEMor
Created February 4, 2025 11:26
Show Gist options
  • Save ALJEMor/f2be76f254c83297b208b693419aef34 to your computer and use it in GitHub Desktop.
Save ALJEMor/f2be76f254c83297b208b693419aef34 to your computer and use it in GitHub Desktop.
04.02.2025_ждем выход
using System;
namespace До_выхода__exit_
{
internal class Program
{
static void Main(string[] args)
{
//Написать программу, которая будет выполняться до тех пор, пока не будет введено слово exit.
string userInput = Console.ReadLine();
while (userInput != "exit")
{
userInput = Console.ReadLine();
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment