习题5-5 使用函数统计指定数字的个数 (15分) 本题要求实现一个统计整数中指定数字的个数的简单函数。

习题5-5 使用函数统计指定数字的个数 (15分) 本题要求实现一个统计整数中指定数字的个数的简单函数。

用求一个数的个位数来依次比较

int CountDigit( int number, int digit )
{
    int conpare,count;
    if (number <0)
    {
        number = number*-1;
    }
    while (number >10)
    {
        conpare = number %10;
        number = number/10;
        if (conpare == digit)
        count++;
    }
    if (number == digit)
    count++;
    return count;    
}
    

 

上一篇:Mybatis报错——Mapped Statements collection already contains value for


下一篇:linux使用git时传输速度太低,提速