문제 (https://www.acmicpc.net/problem/2562)
나의 풀이
쉬웠다! 같은 숫자면 어떡할까? 라고 생각하던 찰나, 조건에 서로 다른 숫자라서 안심했다.
package baekjunOnlineJudge;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Bj_2562 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int[] numberList = new int[9];
int max = 0;
int maxLocation = 0;
for(int i=0; i<9; i++) {
numberList[i] = Integer.parseInt(br.readLine());
}
for(int i=0; i<9; i++) {
if(max < numberList[i]) {
max = numberList[i];
maxLocation = i+1;
}
}
System.out.println(max);
System.out.println(maxLocation);
}
}
'프로그래밍-학습기록 > 코딩테스트' 카테고리의 다른 글
백준 온라인 저지 | 3052 | 배열: 나머지 (0) | 2020.07.28 |
---|---|
백준 온라인 저지 | 2577 | 배열: 숫자의 개수 (0) | 2020.07.27 |
백준 온라인 저지 | 10818 | 1차원 배열: 최소, 최대 (0) | 2020.07.23 |
백준 온라인 저지 | 10996 | 별 찍기 - 21 (0) | 2020.07.22 |
백준 온라인 저지 | 2446 | 별찍기 - 9 (0) | 2020.07.22 |