본문 바로가기
알고리즘/백준 알고리즘

(JAVA) 백준 알고리즘 2562 문제 - 최댓값 구하기

by Love of fate 2020. 10. 6.
728x90
반응형

(20분)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import java.util.Scanner;
 
public class MainTest2562 {
 
    public static void main(String[] args) {
        
        //최댓값
        Scanner sc = new Scanner(System.in);
        
        int max = 0;
        int max_loc = 0;
        
        for(int i = 1; i <= 9; i++) {
            int num = sc.nextInt();
            if(num > max) {
                max = num;
                max_loc = i;
            }
        }
        System.out.println(max);
        System.out.println(max_loc);
    }
}
728x90
반응형