Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApplication1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             string password = "";
  14.  
  15.             Console.WriteLine("enter the password : ");
  16.             password = Console.ReadLine();
  17.             while (password != "abrah ka dabrah")
  18.             {
  19.  
  20.                     Console.WriteLine("you entered wrong , try again");
  21.                 Console.WriteLine("Enter the password : ");
  22.         Console.ReadLine();
  23.  
  24.             }
  25.             Console.WriteLine("you entered right");
  26.             Console.ReadKey();a
  27.  
  28.  
  29.         }
  30.     }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement