Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试生成从 -50 到 50 的随机数,但我不知道如何使用 arc4random 完成此任务。
有没有人有什么建议?谢谢!
您可以获得一个最大为 100 并减去 50 的随机数。您还需要将其转换回 int,因为 arc4random 它是一个无符号类型。
(arc4random() % (101)) - 50