「Swift」arc4random()で乱数を生成する
機能
乱数は範囲(0~100など)を指定して生成します。
サンプルコード
import Foundation
let count = arc4random() % 100
print(count)
Coding Changes the World
機能
乱数は範囲(0~100など)を指定して生成します。
サンプルコード
import Foundation
let count = arc4random() % 100
print(count)