Assignment #59 and Three Card Monte

Code

    /// Name: Ali Kurland
    /// Period: 6
    /// Program Name: Three Card Monte
    /// File Name: ThreeCardMonte.java
    /// Date Finished: 10/8/2015
    
    import java.util.Random;
    import java.util.Scanner;
    
    public class ThreeCardMonte
    {
    	public static void main ( String[] args )
    	{
    		Random r = new Random();
            
            Scanner keyboard = new Scanner(System.in);
            
            int guess;
            int card = 1 + r.nextInt(3);
    
            System.out.println( "You slide up to Fast Eddie's card table and plop down your cash." );
            System.out.println( "He glances at you out of the corner of his eye and starts shuffling." );
            System.out.println( "He lays down three cards." );
            System.out.println( " " );
            System.out.println( "Which one is the ace?" );
            System.out.println( "\t## ## ##" );
            System.out.println( "\t## ## ##" );
            System.out.println( "\t1  2  3 " );
            System.out.println( " " );
            System.out.print( "> " );
            guess = keyboard.nextInt();
            System.out.println( " " );
            
            if ( guess == card )
            {
            System.out.println( "You nailed it! Fast Eddie reluctantly hands over your winnings, scowling." );
            }
            
            else
            {
            System.out.println( "Ha! Fast Eddie wins again! The ace was card number " + card + "." );
            }
        
            System.out.println( " " );
            
            if ( card == 1 )
            {
            System.out.println( "\tAA ## ##" );
            System.out.println( "\tAA ## ##" );
            System.out.println( "\t1  2  3 " );
            }
            
            else if ( card == 2 )
            {
            System.out.println( "\t## AA ##" );
            System.out.println( "\t## AA ##" );
            System.out.println( "\t1  2  3 " );
            }
            
            else
            {
            System.out.println( "\t## ## AA" );
            System.out.println( "\t## ## AA" );
            System.out.println( "\t1  2  3 " );
            }
        }
    }
    

Picture of the output

Assignment 59