package GoUtil func RandNum(start int, end int) int { if start > end { return 0 } return start + GetRand().Intn(end-start+1) }