I am writing a program for myself and i need to do a random between specific numbers. not a random in the field between 2 numbers, A random between few specific numbers. I want to do it with 15 different numbers but if someone could give me an example with just a few that would be wonderful!
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
closed as not a real question by Oded♦, Woot4Moo, Soner Gönül, Servy, Andrew Whitaker Dec 31 '12 at 17:05
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Store your numbers in an array, and choose a random index:
|
|||
|
|
|
Just fill an array with your numbers and then pick the index randomly. Pseudocode:
|
|||
|
|
|
Hard to understand what is being asked for, but it sounds like this:
|
|||
|
|
|
Make a List of your 15 specific numbers. Get a random number between 1 and 15. Get the item in the list at the position specified by your random number. |
|||
|
|
"i need to do a random between specific numbers. not a random in the field between 2 numbers"And what's the difference between the two? – Servy Dec 31 '12 at 16:48