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

Im trying to get random number between -5 and 5. Im using this code:

random.nextInt(10)-5;  

but it doesnt give me number 5 and if i use random.nextInt(10)-4; then I never get -5.

So how can I get random between -5 and 5?

share|improve this question

6 Answers

up vote 16 down vote accepted
random.nextInt(11) - 5

You have 11 integers in the interval so you need 11 different values.

share|improve this answer
1  
+1 yes -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5 makes 11 values. – Peter Lawrey Jun 14 '12 at 12:09

The end of the range is exclusive in Random, so you have to use:

random.nextInt(11) - 5
share|improve this answer

Why don't you try something like

random.nextint(11)-5
share|improve this answer

Use nextInt(11)-5; this is because there are 11 different numbers between -5 and +5.

share|improve this answer

If you want number between -5 and 5 inclusive you can try

random.nextInt(11)-5
share|improve this answer

A helpful link apart from effective answers :
http://docs.oracle.com/javase/1.4.2/docs/api/java/util/Random.html#nextInt()

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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