Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++에서 주어진 숫자의 이진 표현

<시간/>

이진수 는 0과 1의 두 자리 숫자로만 구성된 숫자입니다. 예:01010111.

주어진 숫자를 이진 형식으로 나타내는 방법은 다양합니다.

재귀적 방법

이 방법은 재귀를 사용하여 이진 형식으로 숫자를 나타내는 데 사용됩니다.

알고리즘

Step 1 : if number > 1. Follow step 2 and 3.
Step 2 : push the number to a stand.
Step 3 : call function recursively with number/2
Step 4 : pop number from stack and print remainder by dividing it by 2.

예시

#include<iostream>
using namespace std;
void tobinary(unsigned number){
   if (number > 1)
      tobinary(number/2);
   cout << number % 2;
}
int main(){
   int n = 6;
   cout<<"The number is "<<n<<" and its binary representation is ";
   tobinary(n);
   n = 12;
   cout<<"\nThe number is "<<n<<" and its binary representation is ";
   tobinary(n);
}

출력

The number is 6 and its binary representation is 110
The number is 12 and its binary representation is 1100