Tic Tac Toe Project
- OpenOpen
Create a Tic Tac Toe Program using JAVA Programming Language and its GUI platform to incorporate two players as well as Computer versus Player implementation in CET 3640.
Recent Discussions
Sorry, there were no discussion topics found.
Recent Docs
import javax.swing.JButton; public class CPU { public static int doMove(JButton btn1, JButton btn2, JButton btn3, JButton btn4, JButton btn5, JButton btn6, JButton btn7, JButton btn8, JButton btn9) { if(btn1.getText().equals("O") && See MoreCPU.java
/* Title: Tic-Tac-Toe Game Created: April 25, 2015 Last Edited: April 27, 2015 Author: Dangol Changes: See Below... */ import javax.swing.*; import java.awt.*; import java.awt.event.*; public class TicTacToe implements ActionListener See MoreTicTacToe.Java