Browse Source

if Anweisung für richtige antwort hinzugefügt

remotes/origin/Labyrinth
Ronja Awe 2 years ago
parent
commit
f74b350ebd
  1. 9
      src/c/labyrinth.c

9
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){ void labyrinthschritte(lab laby, int hoehe, int breite, int schritte){
int antwort = 0;
for(int i = 0; i < hoehe; i++){ for(int i = 0; i < hoehe; i++){
for(int j = 0; j < breite; j++){ for(int j = 0; j < breite; j++){
@ -63,4 +63,11 @@ void labyrinthschritte(lab laby, int hoehe, int breite, int schritte){
} }
printf("\n"); printf("\n");
antwort = 14;
if(antwort == schritte){
printf("Richtig, Sie brauchen %d Schritte.\n", schritte);
}
} }
Loading…
Cancel
Save