4 lines
84 B
C
4 lines
84 B
C
#include "myRand.h"
|
|
int myrand(int min, int max){
|
|
return rand()%(max-min)+min;
|
|
} |