diff --git a/src/wwm.c b/src/wwm.c index 945636c..9e4b0bf 100644 --- a/src/wwm.c +++ b/src/wwm.c @@ -50,7 +50,14 @@ void wwm(){ }; - for (int r = 1; r <= 15; r++){ + for (int r = 1; r <= 16; r++){ + if (r == 16) { + printf("Congratulations ! You have won 1.000.000 $"); + return; + } + + + printf("You are at stage %d and have %d $\n", runde, geld); srand(time(0)); int frage = rand() % 10;