Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleApp13
- {
- class Program
- {
- static void Main(string[] args)
- {
- string password = "";
- int tryCount = 0;
- while (tryCount < 5)
- {
- Console.WriteLine("Enter password");
- password = Console.ReadLine();
- tryCount++;
- if (password == "qwerty")
- {
- Console.WriteLine("Access enabled");
- break;
- }
- else
- {
- Console.WriteLine("Wrong password. Try Again");
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment