[BAEKJOON] #2562 (Java)


Problem Link
Problem:
9つの異なる自然数を与える場合は、プログラムを作成し、その中の最値を見つけ、最値がいくつかの数であることを求めます.
例えば、9つの異なる自然数
3, 29, 38, 12, 57, 74, 40, 85, 61
もしあげたら、彼らの中の最高価格は85で、この価格は8番目です.
My Code:
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
 
public class BaekJoon_2562 {
 
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
 
		int max = Integer.parseInt(br.readLine());
        int count = 1; 

		for (int i = 1; i < 9; i++) {
            int val = Integer.parseInt(br.readLine());
            if (val > max) {
                max = val; 
                count = i + 1;
            }
        }
		System.out.println(max);
        System.out.println(count);
	}
}
Input
3
29
38
12
57
74
40
85
61
Output
85
8