https://www.acmicpc.net/problem/1085
0까지의 거리 x,y값
w,h까지의 거리 총 4개를 구해서
최소값을 구하면 성공 입니다!
package solution;
import java.util.Scanner;
public class Bakjun_1085 {
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();
sc.close();
int b = w-x;
int d = h-y;
int min = x;
if(min>y) {
min= y;
}if (min>b) {
min = b;
}if (min>d) {
min = d;
}
System.out.println(min);
}//메인메소드종료
}//클래스종료
'IT_tech > 알고리즘' 카테고리의 다른 글
백준) 4153 직각삼각형 - JAVA (0) | 2020.06.28 |
---|---|
백준) 3009 네번째점 - JAVA (0) | 2020.06.27 |
백준) 9020 골드바흐의 추측 -JAVA (0) | 2020.06.25 |
프로그래머스-약수의 합 java (0) | 2020.06.24 |
프로그래머스) 평균구하기 (0) | 2020.06.23 |