Assignment #64 and PIN Lockout
Code
/// Name: Brendan Baird
/// Period: 6
/// Program Name: PIN Lockout
/// File Name: PinLockout.java
/// Date Finished: 11/5/2015
import java.util.Scanner;
public class PinLockout
{
public static void main(String[] args)
{
Scanner keyboard = new Scanner(System.in);
int pin = 12345;
int tries = 0;
int maxTries = 4;
System.out.println("WELCOME TO THE BANK OF BRENDAN.");
System.out.print("ENTER YOUR PIN: ");
int entry = keyboard.nextInt();
tries++;
while (entry != pin && tries < maxTries)
{
System.out.println("\nINCORRECT PIN. TRY AGAIN.");
System.out.print("ENTER YOUR PIN: ");
entry = keyboard.nextInt();
tries++;
}
if (entry == pin)
System.out.println("\nPIN ACCEPTED. YOU NOW HAVE ACCESS TO YOUR ACCOUNT.");
else if (tries >= maxTries)
System.out.println("\nYOU HAVE RUN OUT OF TRIES. ACCOUNT LOCKED.");
}
}
Picture of the output