Browse Source

function generiereZufallszahl

remotes/origin/Yasin
fdai7731 11 months ago
parent
commit
c5e0f0980e
  1. 17
      src/main/c/Mathe.c

17
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));
}

Loading…
Cancel
Save