/ Published in: Objective C
URL: http://swatiardeshna.blogspot.com/2009/08/random-number-generation-within-range.html
Expand |
Embed | Plain Text
int i = (arc4random()%(max-min+1))+min;
You need to login to post a comment.
arpit on 04/21/10
4 people have marked this snippet as a favorite
umang_nine
rvachere
sb
Tintenklecks
URL: http://swatiardeshna.blogspot.com/2009/08/random-number-generation-within-range.html
int i = (arc4random()%(max-min+1))+min;
You need to login to post a comment.