Type in the following code, and get it to compile.
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; System.out.println("WELCOME TO THE BANK OF MITCHELL."); System.out.print("ENTER YOUR PIN: "); int entry = keyboard.nextInt(); tries++; while ( entry != pin && tries < 3 ) { 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 >= 3 ) System.out.println("\nYOU HAVE RUN OUT OF TRIES. ACCOUNT LOCKED."); } }
WELCOME TO THE BANK OF MITCHELL. ENTER YOUR PIN: 10101 INCORRECT PIN. TRY AGAIN. ENTER YOUR PIN: 23232 INCORRECT PIN. TRY AGAIN. ENTER YOUR PIN: 99999 YOU HAVE RUN OUT OF TRIES. ACCOUNT LOCKED.
Assignments turned in without these things will receive no credit.
©2013 Graham Mitchell
This assignment is licensed under a
Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License.