[Solved] Password/Calculator in C# [closed]
For the password validation: Use a do while loop. The condition to terminate would be if the counter reaches three or if the user gets it right. example int counter = 0; boolean passwordCorrect = false; do { Console.Write(“Please enter the password > “); passWord = Console.ReadLine(); //If the password is correct,then it will break … Read more