diff --git a/src/c/labyrinth.c b/src/c/labyrinth.c index 9e54bf3..2c40653 100644 --- a/src/c/labyrinth.c +++ b/src/c/labyrinth.c @@ -53,7 +53,7 @@ void wegsuchen(lab laby, bool* done, int y, int x, int ziely, int zielx){ void labyrinthschritte(lab laby, int hoehe, int breite, int schritte){ - + int antwort = 0; for(int i = 0; i < hoehe; i++){ for(int j = 0; j < breite; j++){ @@ -63,4 +63,11 @@ void labyrinthschritte(lab laby, int hoehe, int breite, int schritte){ } printf("\n"); + antwort = 14; + + if(antwort == schritte){ + printf("Richtig, Sie brauchen %d Schritte.\n", schritte); + } + + } \ No newline at end of file