Browse Source

magiceightball antworten erweitert

remotes/origin/refactoring
fdai7754 11 months ago
parent
commit
4c414009ea
  1. 8
      src/magiceightball.c

8
src/magiceightball.c

@ -6,7 +6,7 @@ int run_magiceightball() {
srand(time(NULL));
char antwort[12][100] = {
char antwort[16][100] = {
"Ja",
"Nein",
"Vielleicht",
@ -19,6 +19,10 @@ int run_magiceightball() {
"Wascheinlich",
"Das ist eine furchtbare Frage",
"Das solltest du dir selbst beantworten",
"Negativ!",
"Positiv!",
"Das kannst du dir am besten selbst beantworten",
"Nicht in diesem Jahrhundert",
};
printf("Frage: ");
@ -26,7 +30,7 @@ int run_magiceightball() {
char fragesatz[100];
fgets(fragesatz, sizeof(fragesatz), stdin);
int randomIndex = rand() % 12;
int randomIndex = rand() % 16;
printf("%s\n", antwort[randomIndex]);
return 0;
Loading…
Cancel
Save