728x90
문제
https://www.acmicpc.net/problem/2562
풀이 코드
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int max = Integer.MIN_VALUE; //최대값
int idx = Integer.MIN_VALUE; //최대값 위치
for (int i = 0; i < 9; i++) {
int n = Integer.parseInt(br.readLine());
if (n > max) {
idx = i;
max = n;
}
}
System.out.println(max);
System.out.println(idx+1);
}
}
'알고리즘 문제풀이 > 백준' 카테고리의 다른 글
[알고리즘/백준] 2675 문자열 반복(자바) (0) | 2021.09.19 |
---|---|
[알고리즘/백준] 2577 숫자의 개수 (0) | 2021.09.18 |
[알고리즘/백준] 2439 별찍기 - 2(자바, StringBuilder) (0) | 2021.09.18 |
[알고리즘/백준] 2438 별찍기 - 1 (자바, StringBuilder) (0) | 2021.09.18 |
[알고리즘/백준] 1546 평균(자바) (0) | 2021.09.18 |
댓글