Question: public class Main { public static void main(String[] args) { printTicTacToe(); } public static void printTicTacToe(){ //iterate through 0 to 5 as their are 6
public class Main { public static void main(String[] args) { printTicTacToe(); } public static void printTicTacToe(){ //iterate through 0 to 5 as their are 6 rows for(int i = 0 ; i <5;i++){ //if i%2 is 0 then print | | if(i%2==0){ System.out.println(" | | "); } //if i%2 is 0 then print ---+---+--- else{ System.out.println("---+---+---"); } } } }
i have this code here that prints a tic tac toe but i wanted to add more to it like paramaters and im stuck for example dsplaying the choices the player can make and adjust the board code to label those choices. so maybe the user inputs X and it puts it in the tic tac toe then player 2 puts O
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
