반응형
#include <stdio.h>
#include <iostream>
#include <algorithm>
#include <stack>
#include <vector>
#include <math.h>
using namespace std;
void recur(int x){
if(x==0) return;
recur(x/2);
printf("%d", x%2);
}
int main() {
//freopen("input.txt.txt","rt",stdin);
int n;
scanf("%d", &n);
recur(n);
return 0;
}
반응형
'Algorithm > etc' 카테고리의 다른 글
DFS 부분집합 찾기 (0) | 2022.01.14 |
---|---|
이진트리 깊이우선탐색(DFS) (0) | 2022.01.14 |
스택 활용 (0) | 2022.01.13 |
N진수 출력 C++ (0) | 2022.01.12 |
투포인터 활용, ugly numbers (0) | 2022.01.12 |