十进制转成二进制中1的个数
解法一:让临时变量每次乘以二再与源数字相与,测试每一位上的数字是否为1 public int NumberOf1(int n) { int temp=1,count=0; while(temp!=0){ if((temp&n)!=0){ count++; } temp=te...