본문 바로가기
알고리즘 문제풀이/백준

[백준] 1550 16진수 - 자바

by jeonghaemin 2021. 9. 15.
728x90

문제 링크

https://www.acmicpc.net/problem/1550

풀이 코드

  • Integer.parseInt(String s, int radix) 활용
public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String s = br.readLine();
        System.out.println(Integer.parseInt(s, 16));
    }
}

댓글