[Java] 백준 문제 2562 최댓값 백준 문제 2562번 최댓값 지난 글에서의 코드와 비슷하다고 할 수 있다. 입력된 정수 값들 중에서 최댓값과 그 위치를 파악하는 문제이다. import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int ar[] = new int[9]; int max = 0; int maxIndex = 0; for(int i = 0; i < 9; i ++) { ar[i] = sc.nextInt(); } max = ar[0]; for(int j = 0; j < 9; j++) { if (max < ar[j] ) { max ..