标签:
public static int getOne(int n){ if(n <2){ return n; }else{ return ((n % 2)+getOne(n/2)); } }
1.5 输出整数N的二进制1的个数(递归)
原文地址:http://www.cnblogs.com/aitixiaocai/p/4374385.html