Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

package mytictactoe ; import java . awt .*; import java . awt . event .*; import

ID: 3553234 • Letter: P

Question

 package mytictactoe;  import java.awt.*; import java.awt.event.*; import javax.swing.*;   public class TicTacToeV1 implements ActionListener { /*Instance Variables*/ private JFrame window = new JFrame("Tic-Tac-Toe"); private JButton button1 = new JButton(""); private JButton button2 = new JButton(""); private JButton button3 = new JButton(""); private JButton button4 = new JButton(""); private JButton button5 = new JButton(""); private JButton button6 = new JButton(""); private JButton button7 = new JButton(""); private JButton button8 = new JButton(""); private JButton button9 = new JButton(""); 

Explanation / Answer

Fine the same here : http://ideone.com/PTSe4W