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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started