728x90
반응형
최댓값을 구하는 문제
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int[] arr = new int[9];
int maxNum = 0;
int maxIndex = 0;
for ( int i =0; i<9; i++) {
int a = sc.nextInt();
arr[i] = a;
if(maxNum < a) {
maxNum = a;
maxIndex = i+1;
}
}
System.out.println(maxNum);
System.out.println(maxIndex);
}
}
728x90
반응형
'이유's STUDY > 알고리즘 문제풀이' 카테고리의 다른 글
[ 백준 ] 4344번 - 평균은 넘겠지 ( Java 사용) (0) | 2021.07.21 |
---|---|
[ 백준 ] 1110- 더하기 사이클 ( Java 이용 ) (0) | 2021.07.20 |
7576_토마토 (0) | 2019.10.16 |
백준 2667_단지 (0) | 2019.10.02 |
한달계획! (0) | 2019.09.24 |