当前位置 : 主页 > 手机开发 > 其它 >

Swift中的负随机数

来源:互联网 收集:自由互联 发布时间:2021-06-11
我正在开发一个快速的iPhone应用程序,并且有一个要求我总是要生成负的随机数. 我知道生成随机数的方法,但似乎并没有想出一种只产生负数的方法. 请尝试使用这个 let lowerValue = -100le
我正在开发一个快速的iPhone应用程序,并且有一个要求我总是要生成负的随机数.

我知道生成随机数的方法,但似乎并没有想出一种只产生负数的方法.

请尝试使用这个

let lowerValue = -100
let upperValue = 0
let result = Int(arc4random_uniform(UInt32(upperValue - lowerValue + 1))) +   lowerValue

print(result)

Output

-81

网友评论