Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- String password = "12345";
- String inputPassword;
- String secretMessage = "Поздравляем, вам очень сильно повезет в этой жизни!";
- int tryCount = 3;
- for (int i = 0; i < tryCount; i++)
- {
- Console.Write("Введите пароль: ");
- inputPassword = Console.ReadLine();
- if (inputPassword == password)
- {
- Console.WriteLine("Вы угадали пароль!");
- Console.WriteLine(secretMessage);
- break;
- }
- else
- {
- Console.WriteLine("Вы не угадали пароль!");
- }
- }
- Console.WriteLine("До свидания!");
- Console.ReadKey();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement