Code 4x4 TicTacToe in c++? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Code 4x4 TicTacToe in c++?

Hey everyone, I want to make a 4x4Tic tac toe in c++ but this 'TicTacToe' is different to normal one. It can be played by three players.Three players take turns marking the spaces in a 4×4 grid. The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row wins the game.Do you guys know how to make it?Thanks.

6th Mar 2018, 2:01 PM
Eugene Tse
Eugene Tse - avatar
2 Answers
0
Some points: 2D array (char or string) print it after every round. Tell which player's turn they have to enter coordinates of where they want to place marker check if valid place it look for 3 in a row, end game? else next round, start at 2 I can't await to see your code!
6th Mar 2018, 2:55 PM
D B
D B - avatar
0
You can use an enum class with char in the background for the field types. And you can use this data type for the board: std::array<std::array<field_type, 4>, 4>
6th Mar 2018, 4:21 PM
Timon Paßlick