悦耳荔枝

文章
3
资源
1
加入时间
2年10月17天

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

#include 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(