@ -0,0 +1,27 @@
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int run_magiceightball() {
srand(time(NULL));
char antwort[6][100] = {
"Ja",
"Nein",
"Vielleicht",
"Zweifelsfrei",
"Bitte nicht",
"Das trifft zu",
};
printf("Frage: ");
char fragesatz[100];
fgets(fragesatz, sizeof(fragesatz), stdin);
int randomIndex = rand() % 6;
printf("%s\n", antwort[randomIndex]);
return 0;
}