纯C
核心:n &= (n-1)为真的次数,即为二进制中1的个数,详见《编程之美》
#include <stdlib.h> #include <stdio.h> int main() { int n; while(scanf("%d", &n) != EOF) { int count = 0; while(n) { n &= (n-1); count++; } printf("%d\n", count); } return 0; }
纯C
核心:n &= (n-1)为真的次数,即为二进制中1的个数,详见《编程之美》
#include <stdlib.h> #include <stdio.h> int main() { int n; while(scanf("%d", &n) != EOF) { int count = 0; while(n) { n &= (n-1); count++; } printf("%d\n", count); } return 0; }