giovedì 18 giugno 2015

Random Between Two Numbers

int randNum(int min, int max)
{
    return rand()%(max-min +1)+min;
}

Nessun commento:

Posta un commento