I want to generate random numbers from -n to n excluding 0. Can someone provide me the code in C? How to exclude 0?
feedback
|
|
One idea might be to generate a random number This should work:
See the comp.lang.c FAQ for more information about how to use | ||||
|
feedback
|
|
The simplest thing I can suggest to do is to generate a Random number between 0 and 2n and then to do the math trick:
Although 0 might be very unlikely you can check for that using an If and redo the random number generation. | |||
|
feedback
|
It chooses a number from -N to N, but keeps on doing it if it is 0. An alternative, as suggested in the comments, generates a number between -N and N-1 and increments it if its positive or 0:
| |||||||||
feedback
|