포스트

[ 프로그래머스 ] 점프와 순간 이동

문제


https://school.programmers.co.kr/learn/courses/30/lessons/12980

풀이


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <iostream>
using namespace std;

int solution(int n)
{
    int answer = 0;

    while (n != 0)
    {
        if (n % 2 == 0)
        {
            n /= 2;
        }

        else
        {
            answer++;
            n -= 1;
        }
    }

    return answer;
}

이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.