Skip to content

Instantly share code, notes, and snippets.

@EreminAndrei
Created January 30, 2024 10:27
Show Gist options
  • Save EreminAndrei/dd877a5d09509245eaf2a7a04cb7466a to your computer and use it in GitHub Desktop.
Save EreminAndrei/dd877a5d09509245eaf2a7a04cb7466a to your computer and use it in GitHub Desktop.
string password = "exit";
string word;
Console.WriteLine("Введите слово");
word = Console.ReadLine();
while (password != word) ;
{
Console.WriteLine("Не верно попробуйте еще раз");
word = Console.ReadLine();
}
Console.WriteLine("Верно");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment