티스토리 뷰
import java.io.IOException;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
int y = sc.nextInt();
int w = sc.nextInt();
int h = sc.nextInt();
int left=0;
int right=0;
int bottom=0;
int top=0;
int[] length = new int[4];
length[0] = x; //left
length[1] = w-x; //right
length[2] = y; //bottom
length[3] = h-y; //top
int ret = 1001;
for(int i=0; i<4; i++){
if(ret>length[i]){
ret= length[i];
}
}
System.out.println(ret);
} // end of Main
} // end of class Main
'IT > 백준알고리즘[JAVA]' 카테고리의 다른 글
[java] 세변의 길이를 입력받아 직각삼각형인지 판단하기 (0) | 2021.11.24 |
---|---|
[java] 직사각형 네번째 점 찾는 방법 (0) | 2021.11.24 |
java로 소수인지 판별하기 (0) | 2021.11.23 |
2742:기찍 N (0) | 2021.06.14 |
2741:N 찍기 (0) | 2021.06.14 |