Notice
Recent Posts
Recent Comments
Link
study record
[알고리즘-자바] 8진수, 16진수 출력 (코드업 기초100제 1031-1033) 본문
int number = sc.nextInt();
8진수 출력: System.out.printf("%o",number);
16진수 출력(소문자): System.out.printf("%x",number);
16진수 출력(대문자): System.out.printf("%X",number);
'알고리즘' 카테고리의 다른 글
[알고리즘-자바] charAt(), 아스키코드 변환(코드업 기초100제 1036,1037) (0) | 2021.01.14 |
---|---|
[알고리즘-자바] 8진수, 16진수 출력변환(코드업 기초100제 1034,1035) (0) | 2021.01.14 |
[알고리즘-자바] equals()와 ==의 차이(코드업 기초100제 1026) (0) | 2021.01.13 |
[알고리즘-자바] next()와 nextLine()의 차이점 (0) | 2021.01.13 |
[알고리즘-자바] String to int, String.format(), split() (코드업 기초100제 1019) (0) | 2020.11.06 |