문제 출처: https://www.acmicpc.net/problem/18108
1. 코드
import java.util.*;
class Main{
public static void main(String[] args){
final int diff = 2541 - 1998;
Scanner sc = new Scanner(System.in);
int input = sc.nextInt();
System.out.println(input - diff);
sc.close();
}
}
'컴퓨터 > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 25083번: 새싹(자바 Java) (0) | 2022.10.07 |
---|---|
백준 알고리즘 3003번: 킹, 퀸, 룩, 비숍, 나이트, 폰 (자바 Java) (0) | 2022.10.06 |
백준 알고리즘 10926번: ??! [Java] (0) | 2022.10.02 |
백준 알고리즘 2231번: 분해합 C언어 (0) | 2021.08.09 |
백준 알고리즘 21360번: Biosalong [C++] (0) | 2021.06.27 |