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

华为OJ-求int型数据在内存中存储时1的个数

时间:2018-01-05 01:20:30      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:std   bsp   style   nbsp   count   return   main   while   pos   

 1 #include <iostream>
 2 using namespace std;
 3 int GetCount(int num)
 4 {
 5     int m=0;
 6     while(num)
 7     {
 8         num &=(num-1);
 9         m++;
10     }
11     return m;
12 }
13 int main()
14 {
15     int a;
16     cin>>a;
17     cout<<GetCount(a)<<endl;
18 }

 

华为OJ-求int型数据在内存中存储时1的个数

标签:std   bsp   style   nbsp   count   return   main   while   pos   

原文地址:https://www.cnblogs.com/zaijiefangbeidawang/p/8196745.html

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