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

How do I generate a random integer i, such that i belongs to (0,10]?

I tried to use this:

Random generator = new Random();
int i = generator.nextInt(10);

but it gives me values between [0,10).

But in my case I need them to be (0,10].

share|improve this question

marked as duplicate by EJP, Aurelio De Rosa, pst, Dave Newton, bmargulies Nov 23 '11 at 3:19

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.

3 Answers

up vote 10 down vote accepted
Random generator = new Random(); 
int i = generator.nextInt(10) + 1;
share|improve this answer
This generates integers in the range [1, 11). – Nick Meyer Nov 23 '11 at 1:15
3  
... which, now that I realize we're talking about integers, is the same :) – Nick Meyer Nov 23 '11 at 1:16

How about:

Random generator = new Random();
int i = 10 - generator.nextInt(10);
share|improve this answer
Clever, but kind of obtuse. – drdwilcox Nov 23 '11 at 1:10
+1 1/2 for cleverness and -1/2 for obtuseness. – Skip Head Nov 23 '11 at 2:40
Yes, definitely obtuse. I was originally thinking real numbers, but at least it still works for integers! :) – Nick Meyer Nov 23 '11 at 2:57

Just add one to the result. That turns [0, 10) into (0,10] (for integers). [0, 10) is just a more confusing way to say [0, 9], and (0,10] is [1,10] (for integers).

share|improve this answer

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