public class MainClass {
public static void main(String args[]) {
int n = 170; // 10101010
System.out.println("Value in binary: 10101010");
System.out.println("Number of one bits: " + Integer.bitCount(n));
}
}
Value in binary: 10101010
Number of one bits: 4