using System; class TicTacToe { staticint player = 1; staticint choice; staticvoid Print(char[] board) { staticvoid Main(string[] args) { Console.WriteLine(); Console.WriteLine($" {board[0]} |...



using System;

class TicTacToe

{

staticint player = 1;

staticint choice;

staticvoid Print(char[] board)

{

staticvoid Main(string[] args)

{

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();

char[] board = newchar[9];

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

{

board[i] = ' ';

if( board[i]== 'O')

Console.Write("It is your turn to place an X");

}

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, what can be added to this program to make it compile? just a small simple change



Jun 10, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here