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

This is a follow on from a previously posted question:

http://stackoverflow.com/questions/822323/how-to-generate-a-random-number-in-c

I wish to be able to generate a random number from within a particular range, such as 1 to 6 to mimic the sides of a dice.

How would I go about doing this? I'm used to C# and it seems to be a lot more difficult in C to do this.

Thanks

share|improve this question
2  
if you look at the second answer to the question you refer to you have the answer. rand() % 6. – Mats Fredriksson Mar 24 '10 at 16:58
1  
I didn't understand how it worked, so I decided to make a separate question for clarity. – Jamie Keeling Mar 24 '10 at 17:29
1  
Random thought: If you polled a random cross-section of programmers, you'd find a random number of them are randomly thinking of ways to randomly generate numbers. Considering the Universe is governed by precise and predictable laws, isn't it interesting that we try to generate things more randomly? Questions like this always tend to bring out the 10k+ posters. – Atømix Mar 24 '10 at 19:00
@Mats rand() % 6 can return a 0. Not good for a die. – new123456 Mar 5 '11 at 19:33
Can you mark stackoverflow.com/a/6852396/419 as the accepted answer instead of the answer that links to it :) Thanks. – Kev Jun 27 '12 at 13:15
show 1 more comment

5 Answers

up vote 28 down vote accepted

All the answers so far are mathematically wrong. Returning rand() % N does not uniformly give a number in the range [0, N) unless N divides the length of the interval into which rand() returns (i.e. is a power of 2). Furthermore, one has no idea whether the moduli of rand() are independent: it's possible that they go 0, 1, 2, ..., which is uniform but not very random. The only assumption it seems reasonable to make is that rand() puts out a Poisson distribution: any two nonoverlapping subintervals of the same size are equally likely and independent. For a finite set of values, this implies a uniform distribution and also ensures that the values of rand() are nicely scattered.

This means that the only correct way of changing the range of rand() is to divide it into boxes; for example, if RAND_MAX == 11 and you want a range of 1..6, you should assign {0,1} to 1, {2,3} to 2, and so on. These are disjoint, equally-sized intervals and thus are uniformly and independently distributed.

The suggestion to use floating-point division is mathematically plausible but suffers from rounding issues in principle. Perhaps double is high-enough precision to work it; perhaps not. I don't know and I don't want to have to find out on my system.

The correct way is to use integer arithmetic. That is, you want something like the following:

/* Would like a semi-open interval [min, max) */
int random_in_range (unsigned int min, unsigned int max)
{
  int base_random = rand(); /* in [0, RAND_MAX] */
  if (RAND_MAX == base_random) return random_in_range(min, max);
  /* now guaranteed to be in [0, RAND_MAX) */
  int range       = max - min,
      remainder   = RAND_MAX % range,
      bucket      = RAND_MAX / range;
  /* There are range buckets, plus one smaller interval
     within remainder of RAND_MAX */
  if (base_random < RAND_MAX - remainder) {
    return min + base_random/bucket;
  } else {
    return random_in_range (min, max);
  }
}

The recursion is necessary to get a perfectly uniform distribution. For example, if you are given random numbers from 0 to 2 and you want only ones from 0 to 1, you just keep pulling until you don't get a 2; it's not hard to check that this gives 0 or 1 with equal probability.

This method is also described in the link that nos gave in their answer, though coded differently. Getting negative values is a little annoying because you have to increase the range first, which you can do by generating a random bit (using this method) as well as a random nonnegative number and taking the 2's complement (assuming that this is how integers work on your system, which I think they almost always do).

share|improve this answer
tried this in xcode 4.5.1 .. am getting this error -> Undefined symbols for architecture i386: "_random_in_range", – raw3d Nov 9 '12 at 11:32
@raw3d How is the method called in your program? This is a recursive function that calls itself. – tomsmeding Dec 29 '12 at 14:41
@Adam Rosenfield,@Ryan Reich : In a related question where Adam had answered:stackoverflow.com/questions/137783/… the most upvoted answer : The usage of 'modulus' would then be incorrect, no? To generate 1..7 from 1..21,the procedure what Ryan has described should be used.Please correct me if I am wrong. – Arvind Apr 12 at 17:22
unsigned int
randr(unsigned int min, unsigned int max)
{
       double scaled = (double)rand()/RAND_MAX;

       return (max - min +1)*scaled + min;
}

See here for other options.

share|improve this answer
+1: Slightly more random than the obvious solution using %. – S.Lott Mar 24 '10 at 16:59
But you're adding overhead for what's a very simple operation. And C is all about efficiency and performance. Otherwise, why use it? ;-) – Atømix Mar 24 '10 at 17:00
1  
@S.Lott - not really. Each distributes the slightly-higher-odds cases differently, that's all. The double math gives the impression that there's more precision there, but you could just as easily use (((max-min+1)*rand())/RAND_MAX)+min and get probably the exact same distribution (assuming that RAND_MAX is small enough relative to int to not overflow). – Steve314 Mar 24 '10 at 17:05
1  
This is slightly dangerous: it's possible for this to (very rarely) return max + 1, if either rand() == RAND_MAX, or rand() is very close to RAND_MAX and floating-point errors push the final result past max + 1. To be safe, you should check that the result is within range before returning it. – Mark Dickinson Mar 24 '10 at 17:06
2  
If RAND_MAX is replaced by RAND_MAX+1.0 as Christoph suggests, then I believe that this is safe provided that the + min is done using integer arithmetic: return (unsigned int)((max - min + 1) * scaled) + min. The (non-obvious) reason is that assuming IEEE 754 arithmetic and round-half-to-even, (and also that max - min + 1 is exactly representable as a double, but that'll be true on a typical machine), it's always true that x * scaled < x for any positive double x and any double scaled satisfying 0.0 <= scaled && scaled < 1.0. – Mark Dickinson Mar 24 '10 at 18:37
show 5 more comments

Here is a formula if you know the max and min values of a range, and you want to generate numbers inclusive in between the range:

r = (rand() % (max+1-min))+min
share|improve this answer

Wouldn't you just do:

srand(time(NULL));
int r = ( rand() % 6 ) + 1;

% is the modulus operator. Essentially it will just divide by 6 and return the remainder... from 0 - 5

share|improve this answer
It will give results from 1 - 6. That's what the + 1 is for. – Atømix Mar 24 '10 at 17:02
Caught between page refreshes. I was updating while you were writing. ;-) – Atømix Mar 24 '10 at 17:08
2  
Simon, show me a libc in use anywhere where rand() includes the low-order bits of the generator's state (if it uses an LCG). I haven't seen one so far—all of them (yes, including MSVC with RAND_MAX being just 32767) remove the low-order bits. Using modulus isn't recommended for other reasons, namely that it skews the distribution in favor of smaller numbers. – Јοеу Mar 24 '10 at 17:09
@Johannes: So it's safe to say slot machines don't use modulus? – Atømix Mar 24 '10 at 17:14
How would I exclude a 0? It seems that if I run it in a loop of 30, maybe the second or third time it runs there's a 0 roughly half way into it. Is this some sort of fluke? – Jamie Keeling Mar 24 '10 at 18:04
show 3 more comments

//......Generates 1-100 unique random numbers

srand(time(0));
for(i=0;i<101;i++)
a[i]=0;
for(i=0;i<100;i++)
printf("%d\t",a[i]);
 printf("\n");
while(b<100)
{
k=((rand()% 100) +1);
 if(a[k]==0)
 { printf("%d\t",k);
   b++; }
 a[k]++;
}
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.