https://www.acmicpc.net/problem/1094
#include <iostream>
using namespace std;
int main() {
int x;
cin >> x;
int cnt = 1;
while (x != 1) {
if (x % 2 == 1)
cnt++;
x = x / 2;
}
cout << cnt;
}
'Programming > BaekJoon' 카테고리의 다른 글
[C++] 백준 1003번 : 피보나치 함수 (0) | 2019.03.26 |
---|---|
[C++] 백준 11004번 : K번째 수 (0) | 2019.03.18 |
[C++] 백준 2455번 : 지능형 기차 (0) | 2019.03.11 |
[C++] 백준 11721번 : 열 개씩 끊어 출력하기 (0) | 2019.03.06 |
[C++] 백준 10409번 : 서버 (0) | 2019.03.06 |