매우 간단한 문제이다.
문제에서 입력값과 출력값의 차를 구하면 매우 간단하게 구현할 수 있다.
import java.util.*;
public class Step1_8 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
Year.input = sc.nextInt();
Year.toAD();
}
}
class Year {
static int input;
static void toAD () {
System.out.println(input-543);
}
}
'알고리즘 분류 > Step1 입출력과 사칙연산' 카테고리의 다른 글
</Step1_10> 2588 곱셈 JAVA (0) | 2023.03.11 |
---|---|
</Step1_9> 10430 나머지 JAVA (0) | 2023.03.11 |
</Step1_7> 10926 ??! JAVA (0) | 2023.03.11 |
</Step1_6> 10869 사칙연산 JAVA (0) | 2023.03.11 |
</Step1_5> 1008 A / B JAVA (0) | 2023.03.11 |