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 |
Tags
- java
- database
- Matrix
- 구현
- bit manipulation
- greedy
- dynamic programming
- Tree
- Binary Search
- Data Structure
- implement
- string
- geometry
- hash table
- 자바
- Counting
- Stack
- sorting
- Binary Tree
- 코딩테스트
- Number Theory
- Math
- SQL
- array
- Method
- 파이썬
- 코테
- simulation
- Class
- two pointers
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 18108. 1998년생인 내가 태국에서는 2541년생?! 본문
- 입력: 서기 연도를 알아보고 싶은 불기 연도 y가 주어진다. (1000 ≤ y ≤ 3000)
- 출력: 불기 연도를 서기 연도로 변환한 결과를 출력한다.
import java.util.*;
class Main{
public static void main(String args[]){
Scanner scan = new Scanner(System.in);
int year = scan.nextInt();
System.out.println(year-543);
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 10430. 나머지 (0) | 2023.03.17 |
---|---|
[백준 온라인 저지] 3003. 킹, 퀸, 룩, 비숍, 나이트, 폰 (0) | 2023.03.17 |
[백준 온라인 저지] 10926. ??! (0) | 2023.03.17 |
[백준 온라인 저지] 10869. 사칙연산 (0) | 2023.03.17 |
[백준 온라인 저지] 1008. A/B (0) | 2023.03.17 |