4-2. 인덱스1 < 인덱스2인 경우 : distance = index2 - index1 (순방향->)
- 순방향 거리가 전체거리/2보다 작으면 최단거리, 크면 역방향거리가 최단거리
4-3. 인덱스1 > 인덱스2인 경우 : distance = index1 - index2(역방향<-)
- 역방향 거리가 전체거리/2보다 작으면 최단거리, 크면 순방향거리가 최단거리
4-4. 인덱스1 = 인덱스2인 경우 : distance =0
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
import java.util.Scanner;
import lombok.extern.log4j.Log4j;
@Log4j
public class Pathfinding {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
//값 목록으로 배열 생성
char[] gods = {'자', '축', '인', '묘', '진', '사', '오', '미', '신', '유', '술', '해'};
char god1 = sc.next().charAt(0); //시작지점
char god2 = sc.next().charAt(0); //도착지점
sc.close();
int distance; //시작-도착지점 거리
int index1 = 0; //시작인덱스
int index2 = 0; //도착인덱스
for(int i = 0; i < gods.length; i++) {
if(gods[i] == god1) { //시작지점 인덱스
index1 = i;
}
if(gods[i] == god2) { //도착지점 인덱스
index2 = i;
} //if-else
} //for
//전제조건 : 거리가 전체거리/2보다 작으면 최단거리가 된다.
if(index1 < index2) {
distance = index2 - index1; //거리 - 순방향
if(distance < gods.length/2) {
log.info("순방향입니다.");
log.info("최단거리는 : " + distance);
} else if(distance > gods.length/2){
distance = gods.length - distance;
log.info("역방향입니다.");
log.info("최단거리는 : " + distance);
} else {
log.info("순방향과 역방향이 같습니다.");
log.info("최단거리는 : " + distance);
} //if-else
} else if(index1 > index2) {
distance = index1 - index2; //거리 - 역방향
if(distance < gods.length/2) {
log.info("역방향입니다.");
log.info("최단거리는 : " + distance);
} else if(distance > gods.length/2){
distance = gods.length - distance;
log.info("순방향입니다.");
log.info("최단거리는 : " + distance);
} else {
log.info("순방향과 역방향이 같습니다.");
log.info("최단거리는 : " + distance);
} //if-else
} else {
log.info("제자리입니다.");
} // if-else
} //main
} //end class
|
cs |
[JAVA] 자바 예제 - 다차원 배열로 피라미드 모양 출력하기 (0) | 2021.06.10 |
---|---|
[JAVA] 자바 예제 - 배열의 요소 합 구하기(enhanced for문 사용) (0) | 2021.06.09 |
[JAVA] 자바 예제 - 랜덤 숫자 생성하기 (Math.random( )함수 이용) (0) | 2021.06.08 |
[JAVA] 자바 예제 - 자판기 거스름돈 산출하기 (0) | 2021.06.07 |
[JAVA] 자바 예제 - 소수(Prime Number) 구하기 (0) | 2021.06.05 |