mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 05:07:44 +08:00
12 lines
200 B
Go
12 lines
200 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"gitee.com/johng/gf/g/util/grand"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(float64(10)/3)
|
|
fmt.Println(grand.Meet(1, 1))
|
|
fmt.Println(grand.MeetProb(float64(1)/2))
|
|
} |