Crazy Eights Instructions To play a card from your hand, it must match the color or number of the first card in the pile. If you don’t have a playable card, click the pile to draw a card. Depending on the rules you set at the start of a game, you either draw one card per tur...
public class CrazyEights { static Console c; // The output console static int[] deck, player, computer; //card arrays static int pile, suit; //discard pile, current suit (0-3) static boolean deckEmpty; public static void main (String[] args) { //setup console c = new Console (30...