原理:因为10由2*5组成,而构成2的因数比5多 所以最终转换成求5的个数int getNumber(int n) { int count = 0; while(n) { n = n/5; count = count +n; } return count; }