2021年3月1日
摘要: func randFloats(min, max float64, n int) []float64 { res := make([]float64, n) for i := range res { res[i] = min + rand.Float64() * (max - min) } retu 阅读全文
posted @ 2021-03-01 16:24 清明-心若淡定 阅读(1828) 评论(0) 推荐(0) 编辑