Right now the code has only one java file where everything is defined and run; this isn't a good object oriented design. Create a 'Deck.java' class that has all the functionality of a deck of cards, and move the appropriate code from the first class into that one.
It would also be helpful to redefine the way the cards are expressed (literally writing out "10 of Clubs" to the screen instead of "TC").
Right now the code has only one java file where everything is defined and run; this isn't a good object oriented design. Create a 'Deck.java' class that has all the functionality of a deck of cards, and move the appropriate code from the first class into that one. It would also be helpful to redefine the way the cards are expressed (literally writing out "10 of Clubs" to the screen instead of "TC").
~estimated 300 points