/****************************************************************** * Program 5: Blackjack Solitaire * * Programmer: INSERT YOUR NAME HERE * * Due Date: Wednesday, April 7, 2004 * * Class: COMP 14 Instructor: Dr. Michele Weigle * Recitation Section: INSERT SECTION HERE * * 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) { // initialize game BlackjackGame.initGame(); // setup user interface BlackjackUI blackjack = new BlackjackUI(); blackjack.setVisible(true); } }