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( C++/C 2023-09-12 47 点赞 0 评论 71 浏览