Tic Tac Toe game in java

profilebluestar77
TicTAcToe.pdf

5/13/2020

https://s3.amazonaws.com/blackboard.learn.xythos.prod/584b1d8497c84/103665257?response-cache-control=private%2C max-age%3D21600&resp… 1/1

/** * Student Name: * Student ID: * Semester: * Class: COSC 1436 * EL Centro College * Professor Keith Smelser * * */ import java.util.Scanner; public class TicTacToe { public static void main(String[] args) { Long securityCode = null; TicTacToeBoard ticTacToeBoard = new TicTacToeBoard(TicTacToeBoard.PLAYER_2,securityCode); Scanner myKeyboard = new Scanner(System.in); //TODO Process - add code here } }