Browse Source

refactoring: Ausgabe der Funktion geändert

remotes/origin/Labyrinth
Ronja Awe 2 years ago
parent
commit
2120ad603f
  1. 18
      src/c/labyrinth.c

18
src/c/labyrinth.c

@ -55,19 +55,21 @@ void labyrinthschritte(lab laby, int hoehe, int breite, int schritte){
int antwort = 0; int antwort = 0;
for(int i = 0; i < hoehe; i++){
for(int j = 0; j < breite; j++){
printf("%c ", laby[i][j]);
}
printf("\n");
}
printf("\n");
antwort = 14; antwort = 14;
if(antwort == schritte){ if(antwort == schritte){
printf("Richtig, Sie brauchen %d Schritte.\n", schritte); printf("Richtig, Sie brauchen %d Schritte.\n", schritte);
for(int i = 0; i < hoehe; i++){
for(int j = 0; j < breite; j++){
printf("%c ", laby[i][j]);
}
printf("\n");
}
printf("\n");
} }
} }
Loading…
Cancel
Save