Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static void Main()
- {
- string password = "";
- while (!(password == "1234"))
- {
- Console.WriteLine("Введите пароль");
- password = Console.ReadLine();
- Console.Clear();
- }
- Console.WriteLine("Секретное сообщение");
- }
Advertisement
Add Comment
Please, Sign In to add comment