반응형
<코드>
import java.util.Scanner;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int max = 0;
int idx = 0;
for (int i = 1; i <= 9; i++) {
int x = sc.nextInt();
if(max < x) {
max = x;
idx = i;
}
}
System.out.println(max);
System.out.println(idx);
}
}
반응형
'🧩PS > 🥉Easy' 카테고리의 다른 글
[JAVA] 백준 3052번 - 나머지 (0) | 2021.09.17 |
---|---|
[JAVA] 백준 2577번 - 숫자의 개수 (0) | 2021.09.17 |
[JAVA] 백준 10818번 - 최소, 최대 (0) | 2021.09.17 |
[JAVA] 백준 1110번 - 더하기 사이클 (0) | 2021.09.17 |
[JAVA] 백준 10951번 - A+B - 4 (0) | 2021.09.17 |