/****************************************************************** * Program 4: Making Playing Cards * * Programmer: INSERT YOUR NAME * * Due Date: Wednesday, March 29 * * Class: COMP 14 Instructor: Dr. Michele Weigle * Recitation Section: INSERT YOUR SECTION * * Pledge: I have neither given nor received unauthorized aid * on this program. (signature on file) * * Description: Insert a brief paragraph describing the program. * * Input: Insert a brief desciption of user inputs, or "None" if * there is no user input * * Output: Insert a brief description of the program output. * ******************************************************************/ public class Blackjack { public static void main (String[] args) { // create 4 card objects that represent the Ace of Spades, // Queen of Hearts, 7 of Diamonds, and 2 of Clubs /* INSERT CODE HERE */ // call doProgram4 /* INSERT CODE HERE */ } // end of main method /***************************************************** * doProgram4 * * INSERT DESCRIPTION OF METHOD HERE *****************************************************/ public static void doProgram4 (Card[] cards) { // print each Card object and its Blackjack point value /* INSERT CODE HERE */ // total the point values of the 4 cards and display to the user /* INSERT CODE HERE */ // adjust the total for Aces /* INSERT CODE HERE */ } // end of doProgram4 method } // end of class Blackjack