이진수 변환

Woogle·2023년 2월 17일
0

C++ 공부

목록 보기
21/28

📄 풀이

  • 부호 없는 정수(unsigned int)를 취하여 이진수를 출력하는 재귀적 사용자 정의 루틴
#include <iostream>
#include <string>

//unsigned -> 양수 ! -> 베이스 출력 입력, 데이터 ~ n /2, abs
void ToBinary(unsigned int n)   
{
    if (n / 2 != 0) 
    {
        ToBinary(n / 2);
    }
    std::cout << n % 2;
}

int main()
{
    unsigned int decimal = 65;
    ToBinary(decimal);        // 1000001
    return 0;
}
profile
노력하는 게임 개발자

0개의 댓글