Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 애널리틱스4
- bigquery
- ANTIFRAGILE
- git branch 삭제
- JPA
- 오블완
- pat발급
- JPQL
- Python
- docker
- 컬렉션프레임워크
- ci/cd
- 티스토리챌린지
- spring
- 르세라핌
- IntelliJ
- docker 명령어
- 명령어
- datagrip
- analytics4
- DBMS
- gtihub
- db종류
- codeium
- 11월순위
- 도커이미지
- 데이터내보내기
- java
- git pat
Archives
- Today
- Total
hanker
백준(3009) JAVA - 네 번째 점 본문
반응형
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
int d = sc.nextInt();
int e = sc.nextInt();
int f = sc.nextInt();
int x = a;
int y = b;
if(x == c){
x = e;
} else if (x == e){
x = c;
}
if(y == d){
y = f;
} else if(y == f){
y = d;
}
System.out.println(x + " " + y);
}
}
반응형
'Study > ALGORITHM' 카테고리의 다른 글
백준(3053) JAVA - 택시 기하학 (0) | 2021.07.07 |
---|---|
백준(4153) JAVA - 직각삼각형 (0) | 2021.06.29 |
백준(1085) JAVA - 직사각형에서 탈출 (0) | 2021.06.25 |
백준(9020) JAVA - 골드바흐의 추측 (0) | 2021.06.24 |
백준(4948) JAVA - 베르트랑 공준 (0) | 2021.05.12 |