관리 메뉴

fatalite

프로그래머스 점프와 순간이동 본문

코딩 인터뷰/C++

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

fataliteforu 2024. 10. 20. 11:09
#include <iostream>
using namespace std;

int solution(int n)
{
    int ans = 0;
    
    while(n != 0)
    {
        if(n % 2 == 0)
        {
            n /= 2;
            continue;
        }
        else
        {
            n -= 1;
            ans++;
        }
        
    }
    
    return ans;
}