Browse Source

refactoring: print rename

remotes/origin/Simon
Simon Hildebrandt 11 months ago
parent
commit
8c61a7db7d
  1. 2
      src/main/c/TicTacToe.c

2
src/main/c/TicTacToe.c

@ -130,7 +130,7 @@ int TicTacToe_ausfuehren() {
while (Ende[0] == 'W' || Ende[0] == 'w') { while (Ende[0] == 'W' || Ende[0] == 'w') {
Runde = 1; Runde = 1;
initializeBoard(board); initializeBoard(board);
printf("%s, Was willst du sein, X oder O: ", Name1);
printf("%s, Was willst du sein?\n[X/O]\n", Name1);
scanf("%s", Spieler1); scanf("%s", Spieler1);
if (Spieler1[0] != 'X' && Spieler1[0] != 'O') { if (Spieler1[0] != 'X' && Spieler1[0] != 'O') {
printf("Ungültige Auswahl. Das Spiel wird beendet.\n"); printf("Ungültige Auswahl. Das Spiel wird beendet.\n");

Loading…
Cancel
Save