본문 바로가기

JAVA

10진수 => 2진수

10진수 (int) => 2진수 (String)

 

//10진수 => 2진수
Scanner sc = new Scanner(System.in);
int X = sc.nextInt();
String binaryNumber = Integer.toBinaryString(X);