Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Java: generating random number in a range

Hello guys,

I would like to get a random value between 1 to 50.

How may I do that with the help of Math.random(); in Java?

Is there any way to bound the values that will be accepted?

Thank you

share|improve this question

marked as duplicate by Bobby, Michael Petrotta, Nifle, Joachim Sauer, John Saunders May 5 '11 at 16:46

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 10 down vote accepted
Random rand = new Random();

int  n = rand.nextInt(50) + 1;
share|improve this answer
2  
+1. It's easy when you read the documentation isn't it :-) – Java Drinker May 4 '11 at 17:58
2  
Can't believe you got 2 upvotes and that too without answering what is asked !!!! Read Math.random(); ?? – Favonius May 4 '11 at 17:58
answered using Math.random() – zengr May 4 '11 at 18:09

1. Using Math.random()

double random = Math.random() * 50 + 1;
or
int random = (int )(Math.random() * 50 + 1);

This will give you value from 1 to 50 using Math.random()

Why?

random() method returns a random number between 0.0 and 0.999. So, you multiply it by 50, so upper limit becomes 0.0 to 49.999, when you add 1, it becomes 1.0 to 50.999, now when you you truncate to int, you get 1 to 50. (thanks to @rup in comments). leepoint's awesome writeup on both the approaches.

2. Using Random class in Java.

Random rand = new Random(); 
int value = rand.nextInt(50); 

This will give value from 0 to 49.

For 1 to 50: rand.nextInt(50) + 1;

Source of some Java Random awesomeness.

share|improve this answer
@zengr: why rand.nextInt(42)?? – Favonius May 4 '11 at 17:55
my bad, didnt look at the value 50 posted. Fixed. – zengr May 4 '11 at 17:56
don't forget to add 1 – JohnnyO May 4 '11 at 17:58
balanced unnecessary downvote – gd1 May 4 '11 at 17:59
1  
@zengr: my +1 for giving the actual and alternate answer. – Favonius May 4 '11 at 20:17
show 3 more comments
  1. multiply the result by 50 (you'll get values between 0 and 49).
  2. add 1
  3. rinse hands
share|improve this answer
Multiply which result, you could have been more explicative :) – camiloqp May 4 '11 at 17:57
You may also want to add that you have to force convert it to an int, so it converts the value from a double. Although n_yanev didn't specify either I suppose. – Cooper May 4 '11 at 18:07
3  
typical StackOverflow dilemma: give the asker the fish you fixed the problem he has today, teach him/her to fish you set his/her mind free... by spoon feeding people you're not doing them any favors. I mean, come on, what else is there to multiply other than the result of the random() call? – Dan May 4 '11 at 18:44

Please see http://download.oracle.com/javase/6/docs/api/java/util/Random.html . You will get all the answers you need.

share|improve this answer

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