코딩테스트

[백준/JAVA] 2562 최댓값

코드사냥꾼 2021. 4. 28. 12:09

문제

 

 

풀이

간단한 문제이다. 배열의 자리값(=인덱스)는 지정한 숫자의 -1이기 때문에 출력 시 +1된 수가 나와야한다. 따라서, 자리 값을 구하는 count 변수는 인덱스+1 값이 출력되도록 구현했다.

import java.io.*;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        
        int arr[] = new int[9];
        
        for(int i=0; i<9; i++) {
            arr[i] = Integer.parseInt(br.readLine());
        }
        
        int max = 0;
        int count = 0;
        
        for(int i=0; i<arr.length; i++) {
            if(arr[i] > max) {
                max = arr[i];
                count = (i+1);
            }
        }
        System.out.println(max);
        System.out.println(count);
    }
}

 

 

www.acmicpc.net/problem/2562

 

2562번: 최댓값

9개의 서로 다른 자연수가 주어질 때, 이들 중 최댓값을 찾고 그 최댓값이 몇 번째 수인지를 구하는 프로그램을 작성하시오. 예를 들어, 서로 다른 9개의 자연수 3, 29, 38, 12, 57, 74, 40, 85, 61 이 주어

www.acmicpc.net