<hide/>
import java.util.Scanner;
public class BinanyOperation {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int m = scan.nextInt();
if(m == 0) {
System.out.println(0);
}else {
BinanyFunc(m);
}
}
public static void BinanyFunc(int n){
if(n == 0)
return;
else {
BinanyFunc(n / 2);
System.out.printf("%d", n % 2);
}
}
}
'자료구조와 알고리듬 With Java > [Study] BAEKJOON 프로그래머스 CodeUp LeetCode' 카테고리의 다른 글
Code up 3117 0은 빼! (0) | 2022.03.16 |
---|---|
Code up 2016 천단위 구분기호 (0) | 2022.03.16 |
Code up 1928 재귀함수 우박수 문제 (basic) (0) | 2022.03.16 |
Code up 1714 숫자 거꾸로 출력하기 (0) | 2022.03.13 |
Java로 Stack 구현하기 (0) | 2022.03.11 |