using System; class TicTacToe { Console.WriteLine("Do you want be X or O: "); Console.Write("Press 1 for 'X' or Press 2 for 'O'\n"); choice = int.Parse(Console.ReadLine()); if(choice==1) int player =...



using System;

class TicTacToe

{

Console.WriteLine("Do you want be X or O: ");

Console.Write("Press 1 for 'X' or Press 2 for 'O'\n");

choice = int.Parse(Console.ReadLine());

if(choice==1)

int player = 1

{

staticvoid Print(char[] board)

{

Console.WriteLine();

Console.WriteLine($" {board[0]} | {board[1]} | {board[2]} ");

Console.WriteLine($" {board[3]} | {board[4]} | {board[5]} ");

Console.WriteLine($" {board[6]} | {board[7]} | {board[8]} ");

Console.WriteLine();

}

staticvoid Main(string[] args)

{

char[] board = newchar[9];

for (int i = 0; i < 9;="" i="i" +="">

{

board[i] = ' ';

}

Print(board);

board[4] = 'X';

Print(board);

board[0] = 'O';

Print(board);

board[3] = 'X';

Print(board);

board[5] = 'O';

Print(board);

board[6] = 'X';

Print(board);

board[2] = 'O';

Print(board);

}

}

}


Hello how can this be fixed to compile. I'm trying to get the program to ask the user if they want to be X or O at the beginning of the game



Jun 10, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here