计算数字k在0到n中的出现的次数,k可能是0~9的一个值
样例:例如n=12,k=1,在 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],我们发现1出现了5次 (1, 10, 11, 12)
分析:基本就是遍历了,不过要注意的就是0要特别处理。还有在遍历之后的数值处理需要交给临时变量,而不是用遍历数本身。
class Solution {
public:
/*
* @param : An integer
* @param : An integer
* @return: An integer denote the count of digit k in 1..n
*/
int digitCounts(int k, int n) {
// write your code here
int count=0;
if(k==0) count++;
for(int i=k;i<=n;i++){
int temp=i;
while(temp){
if(temp%10==k) count++;
temp/=10;
}
}
return count;
}
};