import javax.swing.JMenuBar; import javax.swing.JMenuItem; import javax.swing.JOptionPane; import javax.swing.JPanel; public class TicTacToe extends JFrame implements ActionListener { private JButton b1, b2, b3, b4, b5, b6, b7, b8, b9; private JPanel grid; private int click_counter = 0; private boolean clear_board = false; public class ExitCallBack implements ActionListener { public void actionPerformed(ActionEvent e) { int result = JOptionPane.showConfirmDialog(null, "Are…
Words 780 - Pages 4