300x250
https://www.acmicpc.net/problem/18108
문제
풀이
2541년(불기) - 1988(서기) = 543년의 차이
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int year = sc.nextInt();
System.out.println(year-543);
}
}
접근만 잘한다면 큰 어려움 없이 문제를 풀수 있다.
300x250
'Progamming > BAEK JOON > 백준의 알고리즘' 카테고리의 다른 글
[백준] 10171번 : 고양이 - JAVA (0) | 2023.02.07 |
---|---|
[백준] 3003번 : 킹, 퀸, 룩, 비숍, 나이트, 폰 - JAVA (0) | 2023.02.07 |
[백준] 10869번 : 사칙연산 - JAVA (0) | 2023.02.07 |
[백준] 1008번 : A/B - JAVA (0) | 2023.02.07 |
[백준] 1000번 : A+B - JAVA / 자바 Scanner (0) | 2023.02.06 |