https://www.acmicpc.net/problem/3009
셋중 하나는 무조건 답이되므로 같지 않은 걸로 체크해서 정답 넣고 출력 하면 끝
package solution;
import java.util.Scanner;
public class Bakjun_3009 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x1= sc.nextInt();
int y1= sc.nextInt();
int x2= sc.nextInt();
int y2= sc.nextInt();
int x3= sc.nextInt();
int y3= sc.nextInt();
int x = x1;
int y = y1;
if(x1==x2) {
x=x3;
}
if(x1==x3) {
x=x2;
}
if(y1==y2) {
y=y3;
}
if(y1==y3) {
y=y2;
}
System.out.println(x+" "+y);
sc.close();
}//메인메소드종료
}//클래스종료
'IT_tech > 알고리즘' 카테고리의 다른 글
프로그래머스)-짝수와홀수 (0) | 2020.06.30 |
---|---|
백준) 4153 직각삼각형 - JAVA (0) | 2020.06.28 |
백준) 1085 직사각형에서 탈출 - JAVA (0) | 2020.06.25 |
백준) 9020 골드바흐의 추측 -JAVA (0) | 2020.06.25 |
프로그래머스-약수의 합 java (0) | 2020.06.24 |