Advertisement
mess0011

ue2_4

Oct 1st, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.51 KB | None | 0 0
  1. namespace ConsoleApplication9
  2. {
  3.     class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             string password = "bbe1b1";
  8.  
  9.             Console.WriteLine("Please enter the password!");
  10.             if (Console.ReadLine()= password)
  11.             {
  12.                 Console.WriteLine("Access granted!");
  13.             }
  14.             else
  15.             {
  16.                 Console.WriteLine("Access denied!");
  17.                
  18.             }
  19.             Console.ReadLine();
  20.         }
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement