반응형
<코드>
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
int y = sc.nextInt();
int w = sc.nextInt();
int h = sc.nextInt();
System.out.println(Math.min(Math.min(Math.abs(y), Math.abs(y-h)), Math.min(Math.abs(x), Math.abs(x-w))));
}
}
|x|, |x-w|, |y|, |y-h| 중에서 가장 작은 값을 구합니다.
https://www.acmicpc.net/problem/1085
반응형
'🧩PS > 🥉Easy' 카테고리의 다른 글
[JAVA] 백준 4153번 - 직각삼각형 (0) | 2021.10.04 |
---|---|
[JAVA] 백준 3009번 - 네 번째 점 (0) | 2021.10.04 |
[JAVA] 백준 9020번 - 골드바흐의 추측 (0) | 2021.10.04 |
[JAVA] 백준 4948번 - 베르트랑 공준 (0) | 2021.10.04 |
[JAVA] 백준 1929번 - 소수 구하기 (0) | 2021.10.04 |