摘要: 1 class Solution { 2 public: 3 int trailingZeroes(int n) { 4 int ret = 0; 5 while(n) 6 { 7 ret += n/5; 8 ... 阅读全文
posted @ 2015-06-09 10:24 阿怪123 阅读(104) 评论(0) 推荐(0)