/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Main frame = new Main();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
JLabel[] pokers = new JLabel[12];
ImageIcon[] randomcard = new ImageIcon[12];
ImageIcon[] answercard = new ImageIcon[12];
int randomnum[] = new int[12];
public Main() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 662, 499);