Assignment #60

Code

///Name: Conner Wygaerts
///Period: 6
///Project Name: PIN
///File Name: PIN.java
///Date Finished: 12/2/15

  import java.util.Scanner;

        public class PIN
{
	       public static void main( String[] args )
	{
		      Scanner keyboard = new Scanner(System.in);
		      int pin = 12345;

		      System.out.println("WELCOME TO THE CONNER WYGAERTS BANK.");
		      System.out.print("ENTER YOUR PIN: ");
		      int entry = keyboard.nextInt();

		      while ( entry != pin )
		{
			 System.out.println("\nINCORRECT PIN. TRY AGAIN.");
			 System.out.print("ENTER YOUR PIN: ");
			 entry = keyboard.nextInt();
		} 

		      System.out.println("\nPIN ACCEPTED. YOU NOW HAVE ACCESS TO YOUR ACCOUNT.");
	}
}

Picture of the output

YourInitials.html