vote up 0 vote down star
1

hi all, i am new to iPhone Programing i have 10 number say (1,2,3,4,5,6,7,8,9,10) i want to choose randomly 1 number from above 10 number.so how can i choose random number from a set of numbers

flag

6% accept rate

3 Answers

vote up 2 vote down

If you simply want a value between 1 and 10, you can use the standard C rand() method. This returns an integer between zero and RAND_MAX.

To get a value between 0 and 9 you can use the % operator. So to get a value between 1 and 10 you can use:

rand()%10 + 1

If you don't want the same series of pseudo random numbers each time, you'll need to use srand to seed the random number generator. A good value to seed it with would be the current time.

If you're asking about choosing a number from a list of arbitrary (and possibly non consecutive) numbers, you could use the following.

int numbers[] = {2,3,5,7,11,13,17,19,23,29};
int randomChoice = numbers[rand()%10];
link|flag
If you want the possibility of a number to be picked the same for each number, don't use %! – Johannes Rössel Nov 1 at 11:45
As RAND_MAX is normally pretty huge, there's only likely to be a tiny tiny variation in the probabilities. – Tom Nov 1 at 12:18
"Show me how to get a random number" — "Here" — "Nice, thanks, anything to watch out for?" — "Yes, the distribution isn't uniform, but it won't matter" — "It won't matter? Hey, I'm generating a billion billion values here, and you say it wouldn't matter?" ... it's not that hard to get right and as long as you don't know much about the OP's requirements don't give them an inferior answer. – Johannes Rössel Nov 3 at 6:24
vote up 0 vote down

something like this

  • (IBAction)generate:(id)sender { // Generate a number between 1 and 10 inclusive int generated; generated = (random() % 10) + 1;

}

link|flag
whether you want to say if i want to choose random number from 10 numbers , then use (random()%10) +1. if yes then if there are only four number, then i use following formula (random()%4) +1. Please suggest – Rupesh Nov 1 at 11:07
vote up -1 vote down

To generate a random number you should use random() function. But if you call it twice it gives you two equal answers. Before calling random(), call srand(time()) to get fresh new random number. if you want to use for(int i = 0; ...) to create numbers, use srand(time() + i).

link|flag
2  
The seed function for random() is srandom(). So either use random() and srandom() or rand() and srand(), but do not mix the two. Generally, random() is recommended because the random algorithm is a little better. – Ole Begemann Nov 1 at 13:14

Your Answer

Get an OpenID
or

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