Notice
Recent Posts
Recent Comments
Link
study record
자바 10진수, 2진수, 8진수, 16진수 변환 본문
자바의 10진수를 2진수, 8진수, 16진수로 만들기
- String octalString = Integer.toOctalString(i); //8진수
- String hexString = Integer.toHexString(i);
- String binaryString = Integer.toBinaryString(i); //2진수
10진수로 만들기
- int binaryToOctal = Integer.parseInt(octalString, 8);
- int binaryToHex = Integer.parseInt(hexString, 16);
- int binaryToDecimal = Integer.parseInt(binaryString, 2);
'알고리즘' 카테고리의 다른 글
[프로그래머스-자바] 크레인인형뽑기게임 (2019카카오개발자겨울인턴십) (0) | 2021.05.06 |
---|---|
[프로그래머스-자바] 동적계획법 (0) | 2021.05.06 |
순열과 조합(자바) (0) | 2021.05.04 |
[프로그래머스-자바] 수식 최대화 (2020카카오인턴십) (0) | 2021.05.04 |
[프로그래머스-자바] 스택/큐 Stack/Queue (0) | 2021.05.04 |