摘要: 题目要求:Given an integer n, return the number of trailing zeroes in n!. 我的解法:int trailingZeroes(int n) { if(n>=5) { int k = n/5; ... 阅读全文
posted @ 2015-03-08 15:05 二货磁铁 阅读(157) 评论(0) 推荐(0) 编辑