码迷,mamicode.com
首页 > 其他好文 > 详细

编写一个函数,求出整型数中bit为1的数的个数

时间:2015-01-14 09:47:44      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:c   c语言   递归   二进制   

使用递归函数

</pre><pre name="code" class="objc">#include <stdio.h>
int count;
int fun(int x)
{
    if(x==0)
        return 0;
    else
    {
         printf("%d",fun(x/2));
         if (x%2 == 1)
        {
            count++;
            return x%2;
        }
         else
         {
             return x%2;
         }
    }
}
int main()
{
  unsigned x;//一般二进制时我们只考虑正数
  scanf("%d",&x);
  printf("%d",fun(x));
  printf("\nbit为1的个数为:");
  printf("%d",count);
}
技术分享


编写一个函数,求出整型数中bit为1的数的个数

标签:c   c语言   递归   二进制   

原文地址:http://blog.csdn.net/u011046042/article/details/42705183

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!