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.
たとえば、次を使用して0から700までの乱数を取得できることを知っています。
arc4random() % 362
しかし、たとえば 200 から 300 の間の乱数を取得するにはどうすればよいでしょうか?
(arc4random() % 100) + 200
うるさいわけではありませんが、数字を追加する必要があると確信しています... 200から300までのすべての数字が必要な場合...使用
200 + arc4random()%101;
arc4random()%100 0から99までの乱数を与えるので、300は決して発生しません...
arc4random()%100