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?
|
|
You have 11 integers in the interval so you need 11 different values. |
|||||
|
|
The end of the range is exclusive in
|
||||
|
|
|
Use nextInt(11)-5; this is because there are 11 different numbers between -5 and +5. |
|||
|
|
|
A helpful link apart from effective answers : |
|||
|
|