首页
阶乘尾零
func trailingZeroes(n
int
)
int
{ ans:
=
0
for
n!=
0
{ n
=n/
5
ans
=ans+
n }
return
ans }
go编程
相关
从Go编程看IO多路复用Epoll
标签