n的阶乘末尾有多少个零 初等数论模版
int fun2(int n) { int num = 0; while(n) { num += n / 5; n = n / 5; } return num; }