티스토리 뷰
find last rectengle point
5 5
5 7
7 5
ans: 7 7
x y
30 20
10 10
10 20
ans : 30 10
first, load the number.
then, find diffrent number from values of x. and y too.
case
1. 5 5 7
2. 5 7 5
3. 7 5 5
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 ret_x=0;
int ret_y=0;
int[] x = new int[3];
int[] y = new int[3];
for(int i=0; i<3; i++){
x[i] = sc.nextInt();
y[i] = sc.nextInt();
}
if(x[0]==x[1]){ //case 1
ret_x =x[2];
}
if(x[0]!=x[1]){
if(x[0]==x[2]){ //case 2
ret_x = x[1];
}
else{
ret_x = x[0]; //case 3
}
}
if(y[0]==y[1]){ //case 1
ret_y =y[2];
}
if(y[0]!=y[1]){
if(y[0]==y[2]){ //case 2
ret_y = y[1];
}
else{
ret_y = y[0]; //case 3
}
}
System.out.println(ret_x+" "+ret_y);
} // 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 |
댓글