I'm already familiar with the Rand() function, rand () % 50;
But how exactly would I do these:
-Make rand() only use numbers from 5 to 10 (5,6,7,8,9,10)
-Make rand() only use numbers from 5 to 10 but NOT 8 (5,6,7,9,10)
And another question, does rand () % 50 prints number from 0-50, or 0-49?