java programming
/**
* Bishnu Karki
* 3127350
* Fall 2020
* Class: COSC 1436
* EL Centro College
* Professor Keith Smelser
*
*
*/
import java.util.Scanner;
public class TicTacToe {
public static void main(String[] args) {
// Set smartComputer as desired
// You may prompt to set this OR hard code the value.
boolean smartComputer = false;
TicTacToeBoard ticTacToeBoard = new TicTacToeBoard(TicTacToeBoard.PLAYER_2,smartComputer);
Scanner myKeyboard = new Scanner(System.in);
//TODO Process - add code here
}
}