#include "myRand.h" int myrand(int min, int max){ return rand()%(max-min)+min; }