Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

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

Intelligent Databases Technologies And Applications

Authors: Zongmin Ma

1st Edition

1599041219, 978-1599041216

More Books

Students also viewed these Databases questions

Question

please dont use chat gpt or other AI 2 5 .

Answered: 1 week ago