Posted on September 23, 2020September 23, 2020 Description Submission class Solution { public: int trailingZeroes(int n) { int count = 0; for(; n > 0; n /= 5) { count += (n / 5); } return count; } }; By Bill0412 Easy LeetCode