Files
2019-07-24 09:58:01 -04:00

7 lines
100 B
Go

func main() {
for i := 0; i <= 9; i++ {
f := count(fact(gen(i)))
fmt.Println(i, "! =", f)
}
}