diff --git a/src/main/c/Mathe.c b/src/main/c/Mathe.c index ced2432..683434b 100644 --- a/src/main/c/Mathe.c +++ b/src/main/c/Mathe.c @@ -67,3 +67,8 @@ void zeigeAuswahl(const char* text); //17 void initialisiereZufallsgenerator() { srand(time(NULL)); + + +//18 +int generiereZufallszahl(int min, int max) { + return min + (int)((double)rand() / (RAND_MAX + 1) * (max - min + 1));