Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,990 questions

51,935 answers

573 users

How to generate random numbers in Go

2 Answers

0 votes
package main
 
import (
    "fmt"
    "math/rand"
    "time"
)
   
func main() {
    rand.Seed(time.Now().UnixNano())
     
    for i := 0; i < 20; i++ {
        fmt.Println(rand.Intn(10))
    }
}
  
  
  
/*
run:
  
5
1
6
6
5
5
1
1
8
5
0
2
3
3
9
1
1
8
0
8
  
*/

 



answered Aug 11, 2020 by avibootz
edited Oct 14, 2021 by avibootz
0 votes
package main
 
import (
    "fmt"
    "math/rand"
    "time"
)
   
func randomBetweenRange(min, max int) int {
	return rand.Intn(max - min + 1) + min
}

func main() {
    rand.Seed(time.Now().UnixNano())
     
    for i := 0; i < 20; i++ {
        fmt.Println(randomBetweenRange(25, 33))
    }
}
  
  
  
  
  
/*
run:
  
33
26
26
27
31
32
26
25
32
28
30
28
32
25
27
26
25
28
30
27
  
*/

 



answered Oct 14, 2021 by avibootz
...