Skip to content

Instantly share code, notes, and snippets.

@as
Created January 25, 2019 14:37
Show Gist options
  • Save as/01ff03fca10492bffbb47715ebbd8c4a to your computer and use it in GitHub Desktop.
Save as/01ff03fca10492bffbb47715ebbd8c4a to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"math/rand"
)
func main() {
t := 0
i := 0
for ; i < 1e7; i++ {
if rand.Intn(100)+1 <= 75 {
t++
}
}
fmt.Printf("%0.3f\n", float64(t)/float64(i))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment