[math/rand] 正の整数の乱数値を求める(Int)
説明
正の整数の乱数値を求めるにはmath/randパッケージのInt()メソッドを使います。Int()は擬似乱数で乱数のシードを変更しない限り、同じ値を返します。乱数のシードはSeed()メソッドを使います。
サンプル [
サンプルをダウンロード
]
package main
import "math/rand"
import "fmt"
func main() {
rand.Seed(5963)
var n =
rand.Int()
fmt.Println(n)
}
実行結果