250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 한빛아카데미
- gsap
- java
- 초연결 사회의 데이터통신과 네트워킹
- 자바스크립트
- JavaScript
- 네트워킹
- 자바
- 초연결사회의 데이터통신과 네트워킹
- 함수
- JLPT
- 단어장
- ArrayList
- Algorithm
- 연습문제
- html
- React
- 라이브러리
- prettier-code formatter
- ScrollToPlugin
- Node.js
- 스크롤
- 알고리즘
- 데이터통신
- 일본어
- reactjs code snippets
- scrolly
- 백준
- 이벤트
- quizlet
Archives
- Today
- Total
umilove98의 블로그
백준 1550 Java 본문
반응형
import java.io.*;
public class Q1550 {
public static void main(String[] args) throws IOException {
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
String hex = bf.readLine();
int decimal = Integer.parseInt(hex,16);
System.out.println(decimal);
}
}
반응형
'algorithm > 백준' 카테고리의 다른 글
백준 2914 Java (0) | 2021.07.17 |
---|---|
백준 2845 Java (0) | 2021.07.17 |
백준 2475 Java (0) | 2021.07.17 |
백준 2338 Java (0) | 2021.07.17 |
백준 1271 Java (0) | 2021.07.17 |