I know how to do it between 0 and 100, but I can I set the floor?

This is how I do 0 - 100..

int randomNum = (int) Math.ceil(Math.random() * 100);
link|improve this question

feedback

5 Answers

up vote 11 down vote accepted

Generate a random number from 0 to 25 and add 75. :)

link|improve this answer
feedback
int randomNum = (int) Math.ceil(Math.random() * 25) + 75;
link|improve this answer
feedback

Generate a number between 0 and 25 and then add 75.

link|improve this answer
feedback

Do it between zero and 25 and add 75.

link|improve this answer
feedback

I know this is answered already but correct answer did not have code snippet. So here is a little code snippet:

int randomNum = 0;
Random ran = new Random();
randomNum  = ran.nextInt(25) + 75;
link|improve this answer
+1 for putting actual code for those of us that don't know it off the top of our heads – Patrick May 1 at 20:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.