摘要: package main import ( "math/rand" "time" "fmt" ) const ( P = 0.6 MaxLevel = 8 ) func randomLevel() int { i := 1 rand.Seed(time.Now().UnixNano()) for i 阅读全文
posted @ 2020-03-28 17:08 yyanbiao 阅读(378) 评论(0) 推荐(0) 编辑