Browse Source

functional 27: if Anweisung-Implementierung Runde 11-15

remotes/origin/Christian
Christian Reum 11 months ago
parent
commit
a2fce8a2fc
  1. 25
      src/wwm.c

25
src/wwm.c

@ -177,6 +177,29 @@ void wwm(){
printf("What a shame! That is wrong! \n You lost %d $ ", geld); printf("What a shame! That is wrong! \n You lost %d $ ", geld);
break; break;
} }
}
}
if (r > 10 && r <= 15) {
printf("___________________________________________________________\n\n");
printf("You are at stage %d and have %d $\n", runde + 1, geld);
crandomNumber();
printf("Question %d: %s\n", runde + 1, questions3[frage]);
for (int i = 0; i < 4; i++) {
printf("%d. %s \n", i + 1, answers3[frage][i]);
};
ceingabe();
if (useranswer == correctAnswer3[frage]) {
printf("That is correct!\n");
runde++;
setGeld(runde);
}
else {
printf("What a shame! That is wrong! \n You lost %d $ ", geld);
break;
}
}
} }
} }
Loading…
Cancel
Save