标签:整数 esc 例子 return 运算 class 输出 sub 进制
1 public class Solution { 2 public int NumberOf1(int n) { 3 int count=0; 4 int i = 1; 5 while(i!=0){ 6 if((n&i)!=0){ 7 count++; 8 } 9 i=i<<1; 10 } 11 return count; 12 } 13 }
1 public class Solution { 2 public int NumberOf1(int n) { 3 int count = 0; 4 while(n!= 0){ 5 count++; 6 n = n & (n - 1); 7 } 8 return count; 9 } 10 }
标签:整数 esc 例子 return 运算 class 输出 sub 进制
原文地址:https://www.cnblogs.com/yihangZhou/p/10327564.html