this code is for tic tac toe this code was made to have two
this code is for tic tac toe, this code was made to have two users to play against each other.
The question: is to edit this code is to make one user plays against Al (computer) instead of the other user. So, it will be edited to have one user vs computer.
this code is for tic tac toe, this code was made to have two users to play against each other.
The question: is to edit this code is to make one user plays against Al (computer) instead of the other user. So, it will be edited to have one user vs computer.
Solution
public class TicTacToeBoard{ private char[][] ttBoard;//initializes the type of array for the board private boolean gameActive = true;
