我正在开发一个快速的iPhone应用程序,并且有一个要求我总是要生成负的随机数. 我知道生成随机数的方法,但似乎并没有想出一种只产生负数的方法. 请尝试使用这个 let lowerValue = -100le
我知道生成随机数的方法,但似乎并没有想出一种只产生负数的方法.
请尝试使用这个let lowerValue = -100 let upperValue = 0 let result = Int(arc4random_uniform(UInt32(upperValue - lowerValue + 1))) + lowerValue print(result) Output
-81