1import java.util.*;
2
3public class Game
4{
5 public static void main(String[] args)
6 {
7 Random rand = new Random(System.currentTimeMillis());
8 int[] D = Card.makeDeck();
9 Card.shuffle(D,rand);
10 for(int top = 0; top < D.length; top++)
11 System.out.println(Card.cardToString(D[top]));
12 }
13}