@ -76,8 +76,8 @@ void makeMove() {
// Konvertiere die Zahl in Zeilen- und Spaltenindex
if (isValidMove(choice)) {
int row = (choice - 1) / / BOARD_SIZE;
int col = (choice - 1) % % BOARD_SIZE;
int row = (choice - 1) / BOARD_SIZE;
int col = (choice - 1) % BOARD_SIZE;
board[row][col] = currentPlayer;
currentPlayer = switchPlayer(currentPlayer);