package java1226;
public class Array_max {
public static void main(String[] args) {
int[] ar = { 74, 23, 97, 67, 28 };
int size = ar.length;
int i = 0; // 0은 인덱스입니다.
int j = 0; // 최소값 인덱스 .
int count = 0;
int max = ar[0];
int min = ar[0];
int max_pos =0;
int pos = 0; // 작은 값의 위치를 저장할 변수
// 최대값
while (i < size) {
if (max < ar[i]) {
max = ar[i];
max_pos = i;
}
i = i + 1;
}
// 최소값
while (j < size) {
if (min > ar[j]) {
min = ar[j];
pos = j;// 최소값을 찾았을 때 그 위치를 저장
}
j = j + 1;
}
System.out.println(max);
System.out.println(min);
System.out.println("max : " + max_pos);
System.out.println("max : " + pos);
}
}