Assignment #59 Three-Card Monte

Code

    /// Name: Matthew Lorence
    /// Period: 5
    /// Program Name: ThreeCard
    /// File Name: ThreeCard.java
    
    import java.util.Random;
    import java.util.Scanner;
    
    public class ThreeCard
    {
        public static void main (String [] args)
        {
            Random r = new Random();
            Scanner keyboard = new Scanner (System.in);
            
            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();
            System.out.println("\t ##  ##  ##");
            System.out.println("\t ##  ##  ##");
            System.out.println("\t 1   2   3 ");
            System.out.println();
            int guess = keyboard.nextInt();
            System.out.println();
            
            if ( card == guess)
            {
                System.out.println("You nailed it! Fast Eddie reluctantly hands over your winnings, scowling.");
            }
            if ( card != guess)
            {
                System.out.println("Ha! Fast Eddie wins again! The ace was card number " + card + ".");
            }
        }
    }
        
                
        
    

Picture of the output

Assignment 59