Posts by hello • 1 point
1 post
-
0
votes2
answers99
viewsQ: Generation of allele numbers
I have declared a method for generating random numbers, but the results are almost always the same, because? int geraAleatorio(int min, int max) { return ((rand() % (max - min)) + min) + 1; } Is…