码迷,mamicode.com
首页 > 其他好文 > 详细

IOIS随机数

时间:2014-04-29 16:51:50      阅读:625      评论:0      收藏:0      [点我收藏+]

标签:style   size   width   strong   get   tab   ble   int   cti   c   table   

引入

有时候我们需要在程序中生成随机数,但是在Objective-c中并没有提供相应的函数,好在C中提供了rand()srand()random()arc4random()几个函数。那么怎么使用呢?下面将简单介绍:

使用

1、  获取一个随机整数范围在:[0,100)包括0,不包括100

int x = arc4random() % 100;

2、  获取一个随机数范围在:[500,1000],包括500,包括1000

int y = (arc4random() % 501) + 500;

3、  获取一个随机整数,范围在[from,to],包括from,包括to

-(int)getRandomNumber:(int)from to:(int)to

{

    return (int)(from + (arc4random() % (to – from + 1)));

}

IOIS随机数,码迷,mamicode.com

IOIS随机数

标签:style   size   width   strong   get   tab   ble   int   cti   c   table   

原文地址:http://www.cnblogs.com/damao2012/p/3698162.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!