#include<stdio.h>
int main(){
int n;
int cnt=0;
scanf("%d",&n);
while(n!=0){
if(n%2 == 1) cnt++;
n/=2;
}
printf("%d",cnt);
}
// 구현 !
'알고리즘' 카테고리의 다른 글
[Algorithm] eightnine (0) | 2019.01.11 |
---|---|
[Algorithm] BruteForce (0) | 2019.01.11 |
2455 [시뮬레이션1] (0) | 2019.01.07 |
10872 팩토리얼 구하기 (0) | 2019.01.06 |
2839 설탕배달 (구현) (0) | 2018.12.31 |