백준 2562 자바 1차원배열(최댓값)

임명수·2023년 5월 12일
0

백준

목록 보기
15/31

https://www.acmicpc.net/problem/2562

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        StringTokenizer st;

        int first=0;
        int frist_index =1;

        for(int i=1; i< 10; i++){
            st = new StringTokenizer(br.readLine());
            int x = Integer.parseInt(st.nextToken());
            if(first < x){
                first = x;
                frist_index = i;
            }
        }
        System.out.println(first + "\n" + frist_index);
    }

}
profile
푸른영혼의별

0개의 댓글