Golang 生成随机数
Posted 戎码之路
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Golang 生成随机数相关的知识,希望对你有一定的参考价值。
package main import ( "fmt" "math/rand" "time" ) func main() { rand.Seed(time.Now().UnixNano()) for i := 0; i < 10; i++ {
x := rand.Intn(100) fmt.Println(x) } }
以上是关于Golang 生成随机数的主要内容,如果未能解决你的问题,请参考以下文章