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

Posted summerkiki

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer32 整数中1出现的次数(从1到n整数中1出现的次数)相关的知识,希望对你有一定的参考价值。

class Solution {
public:
    int NumberOf1Between1AndN_Solution(int n)
    {
        if(n<=0)
            return 0;
        int count=0;
        int i=1;
        while(i<=n)
        {
            int p=i;
            while(p)
            {
                if(p%10==1)
                    count++;
                p=p/10;
            }
            i++;
        }
        return count;
    
    }
};

 

以上是关于剑指offer32 整数中1出现的次数(从1到n整数中1出现的次数)的主要内容,如果未能解决你的问题,请参考以下文章

《剑指offer》JZ31 ~ JZ40

《剑指offer》JZ31 ~ JZ40

《剑指offer》JZ31 ~ JZ40

《剑指offer》JZ31 ~ JZ40

剑指offer-整数中1出现的次数(从1到n整数中1出现的次数)

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