diff --git a/src/main/c/Mathe.c b/src/main/c/Mathe.c index 2acfa1b..6b752d1 100644 --- a/src/main/c/Mathe.c +++ b/src/main/c/Mathe.c @@ -49,6 +49,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)); +} + + + + + + + + + + + + +