[Swift]乱数を生成する方法 2021年7月6日方法1 let cnt = arc4random_uniform(44) print(cnt) 方法2 let cnt = arc4random() % 33 print(cnt) SwiftPosted by arkgame