题解 | #整数中1出现的次数(从1到n整数中1出现的次数)#

整数中1出现的次数(从1到n整数中1出现的次数)

http://www.nowcoder.com/practice/bd7f978302044eee894445e244c7eee6

public:
    int NumberOf1Between1AndN_Solution(int n) {
        int i;
        int sum=0;
        for(i=1;i<=n;i+=1){
            sum+=judge(i);
        }
        return sum;
    }
    
    int judge(int n){
        int result;
        int count=0;
        while(n!=0){
            result=n%10;
            if(result==1){
                count+=1;
            }
            n/=10;
        }
        
        return count;
    }
};
全部评论

相关推荐

巧克力1:双选会不如教室宣讲会
点赞 评论 收藏
分享
一名愚蠢的人类:多少games小鬼留下了羡慕的泪水
投递荣耀等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务