C++求2进制01不同的位数

前端之家收集整理的这篇文章主要介绍了C++求2进制01不同的位数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#include <iostream> using namespace std; int Grial(int x,int y) { int count = 0; while(x!=0 || y!=0) { if( ((x&0x1) ^ (y&0x1)) ) count++; x>>=1; y>>=1; } return count; } int main() { cout<<Grial(2,15)<<endl; return 0; }

猜你在找的PHP相关文章