172. 阶乘后的零
public int trailingZeroes(int n) {int zeroCount = 0;for (int i = 5; i <= n; i += 5) {int currentFactor = i;while (currentFactor % 5 == 0) {zeroCount++;currentFactor /= 5;}}return zeroCount;// 作者:LeetCode// 链接:https://leetcode-cn.com/problems/factorial-trailing-zeroes/solution/jie-cheng-hou-de-ling-by-leetcode/}
