Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace password
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- string password = "12345";
- int maxTryCount = 3;
- int tryCount = 1;
- for (int i = 0; i < maxTryCount; i++)
- {
- Console.Write("Введите пароль: (Подсказка - пароль 12345) ");
- string userInput = Console.ReadLine();
- if (userInput == password)
- {
- Console.WriteLine("Секретное сообщение");
- break;
- }
- else
- {
- if (i > tryCount)
- {
- Console.WriteLine("Пароль не верный, попытки закончились");
- break;
- }
- Console.WriteLine("Пароль не верный, попробуйте еще раз");
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement