Browse Source

magiceightball funktion implimentiert

remotes/origin/magiceightballdev
fdai7754 11 months ago
parent
commit
9ba7c9589c
  1. 27
      src/magiceightball.c

27
src/magiceightball.c

@ -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;
}
Loading…
Cancel
Save