ios 随机数生成 字数612 阅读3037 评论1 喜欢15 最近一直使用随机数,为了以后方便查阅,总结一下: 在C中提供了rand().srand().random().arc4random()几个函数. 使用 arc4random 生成随机数 1.1 获取一个随机整数范围在:[0,100)包括0,不包括100 int x = arc4random() % 100; 1.2 获取一个随机数范围在:[100,200],包括100,包括200 int y =100 + (arc4random()…