소스 코드
package com.company;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("테스트 케이스 숫자를 입력해주세요.");
int T = sc.nextInt();
int arr[] = new int[T];
int i;
int count = 0;
int max = 0;
for(i=0; i<arr.length; i++) {
arr[i] = sc.nextInt();
if(arr[i] > max) {
max = arr[i];
count = i+1; // index는 0부터 시작이기때문
}
}
System.out.println(max);
System.out.println(count);
}
}
출력 결과
'5. 알고리즘 > 5_3 백준' 카테고리의 다른 글
[백준 알고리즘] 백준 3052번 나머지 자바(JAVA) (0) | 2020.02.10 |
---|---|
[백준 알고리즘] 백준 2557번 숫자의 개수 자바(JAVA) (0) | 2020.02.10 |
[백준 알고리즘] 백준 10818번 최소, 최대 자바(JAVA) (0) | 2020.02.10 |
[백준 알고리즘] 백준 10871번 X보다 작은 수 자바(JAVA) (0) | 2020.02.09 |
[백준 알고리즘] 백준 2439번 별 찍기 - 2 자바(JAVA) (0) | 2020.02.09 |