题解 | #求int型正整数在内存中存储时1的个数#
求int型正整数在内存中存储时1的个数
https://www.nowcoder.com/practice/440f16e490a0404786865e99c6ad91c9
题解
使用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()); } } }