1. 程式人生 > >劍指offer--二進位制中1的個數

劍指offer--二進位制中1的個數

題目描述
輸入一個整數,輸出該數二進位制表示中1的個數。其中負數用補碼錶示。
程式碼實現(JAVA)

public class Solution {
    public int NumberOf1(int n) {
            int t=0;
            char[]ch=Integer.toBinaryString(n).toCharArray();
            for(int i=0;i<ch.length;i++){
                if(ch[i]=='1'){
                    t++;
                }
            }
            return t;
    }
}