diff --git a/src/main/c/Mathe.c b/src/main/c/Mathe.c index 87183e0..c095d30 100644 --- a/src/main/c/Mathe.c +++ b/src/main/c/Mathe.c @@ -47,6 +47,23 @@ void zeigeAuswahl(const char* text); void initialisiereZufallsgenerator() { srand(time(NULL)); } +//18 +int generiereZufallszahl(int min, int max) { + return min + (int)((double)rand() / (RAND_MAX + 1) * (max - min + 1)); +} + + + + + + + + + + + + +