Browse Source

Convert the number

remotes/origin/fdai7775-main-patch-54732
fdai7775 11 months ago
parent
commit
95c9763676
  1. 4
      src/main/c/GameTic_Tac_Toe/game.c

4
src/main/c/GameTic_Tac_Toe/game.c

@ -52,3 +52,7 @@ void makeMove() {
printf("Spieler %c, wähle eine Zahl (1-9): ", currentPlayer);
scanf("%d", &choice);
// Konvertiere die Zahl in Zeilen- und Spaltenindex
int row = (choice - 1) / 3;
int col = (choice - 1) % 3;
Loading…
Cancel
Save