题解 | #阶乘末尾0的数量#

阶乘末尾0的数量

https://www.nowcoder.com/practice/aa03dff18376454c9d2e359163bf44b8

import java.util.*;


public class Solution {
    /**
     * the number of 0
     * @param n long长整型 the number
     * @return long长整型
     */
    public long thenumberof0 (long n) {
        long count_5 = 0 ;//1~n中能分解的5的倍数
        long base = 5 ;//5,25,125
        while(n >= base) {
            count_5 += n / base ;
            base *= 5 ;
        }
        return count_5 ;
    }
}

全部评论

相关推荐

我只是一个小白菜:我还用不惯m4,也是山猪吃不了细糠了
投递字节跳动等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务