Skip to content

Instantly share code, notes, and snippets.

@EreminAndrei
Created January 29, 2024 20:52
Show Gist options
  • Save EreminAndrei/9d51bdfe2e78e86c85a20e1ef48a8eca to your computer and use it in GitHub Desktop.
Save EreminAndrei/9d51bdfe2e78e86c85a20e1ef48a8eca to your computer and use it in GitHub Desktop.
string password = "exit";
string word;
Console.WriteLine("Введите слово");
word = Console.ReadLine();
bool check = (word == password);
int checkbool = Convert.ToInt32(check);
while (checkbool < 1)
{
Console.WriteLine("Не верно попробуйте еще раз");
word = Console.ReadLine();
check= (word == password);
checkbool= Convert.ToInt32(check);
}
Console.WriteLine("Верно");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment