Skip to content

Instantly share code, notes, and snippets.

@Hellhackee
Created November 21, 2020 20:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hellhackee/4fa94e0fc622f1a028a9f78279db6e9b to your computer and use it in GitHub Desktop.
Save Hellhackee/4fa94e0fc622f1a028a9f78279db6e9b to your computer and use it in GitHub Desktop.
CS Light Lesson 8.1 (stop cycle)
string endMessage = "exit";
string inputMessage = "";
while (endMessage != inputMessage)
{
Console.Write("Введите 'стоп-слово': ");
inputMessage = Console.ReadLine();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment