Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace SecretMessage
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- Console.OutputEncoding = Encoding.UTF8;
- string password;
- string accessToMessage;
- int tryCount;
- int tryNumber;
- accessToMessage = "123456789";
- tryCount = 3;
- for (int i = 0; i < tryCount; i++)
- {
- Console.WriteLine("Введите свой пароль");
- password = Console.ReadLine();
- if (password == accessToMessage)
- {
- Console.WriteLine("Вы читаете тайное сообщение");
- break;
- }
- else
- {
- Console.WriteLine("Вам в тайном сообщение отказано");
- tryNumber = tryCount - i - 1;
- Console.WriteLine($"У вас осталось - {tryNumber} попыток");
- }
- }
- Console.Write("\n Возвращайтесь к нам в еще раз");
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement