import java.io.InputStreamReader;
import java.io.BufferedReader;
import java.io.IOException;
public class Main{
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int idx = 0, max = -999;
for(int i=0;i<9;i++){
int val = Integer.parseInt(br.readLine());
if(max<val){
max = val;
idx = i+1;
}
}
System.out.printf("%d\n%d", max,idx);
}
}
'[BOJ] - JAVA' 카테고리의 다른 글
[백준] 3052 : 나머지 JAVA 풀이 (0) | 2022.05.12 |
---|---|
[백준] 2577 : 숫자의 개수 JAVA 풀이 (0) | 2022.05.12 |
[백준] 10818 : 최소, 최대 JAVA 풀이 (0) | 2022.05.12 |
[백준] 1110 : 더하기 사이클 JAVA 풀이 (0) | 2022.05.10 |
[백준] 10951 : A + B - 4 JAVA 풀이 (0) | 2022.05.10 |