题解

使用Integer的toBinaryString方法转换为二进制。

代码

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (sc.hasNextInt()) {
            String str = Integer.toBinaryString(sc.nextInt());
            System.out.println(str.length() - str.replaceAll("1", "").length());
        }
    }
}