Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

package tictactoegame; public class TicTacToeGame { static int [ ] [ ] gameboard; static final int EMPTY = 0 ; static final int NOUGHT =

package tictactoegame;
public class TicTacToeGame {
static int[][] gameboard;
static final int EMPTY =0;
static final int NOUGHT =-1;
static final int CROSS =1;
/* Set a square on the board must be empty */
public static void set(int val, int row, int col) throws IllegalArgumentException {
if (gameboard[row][col]== EMPTY)
gameboard[row][col]= val;
else throw new IllegalArgumentException("Player already there!");
}
/* display the board */
public static void displayBoard(){
for(int r=0; r

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions