fr0stn1k

C#Light3.2.2_Kovylov

Feb 9th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1. public static void Main()
  2.         {
  3.             string password = "";
  4.  
  5.             while (!(password == "1234"))
  6.             {
  7.                 Console.WriteLine("Введите пароль");
  8.                 password = Console.ReadLine();
  9.                 Console.Clear();
  10.             }
  11.  
  12.             Console.WriteLine("Секретное сообщение");
  13.         }
Advertisement
Add Comment
Please, Sign In to add comment