본문 바로가기
JAVA/Coding Test Study

[D1] SWEA - 2068. 최대수 구하기 : Java

by ♡˖GYURI˖♡ 2023. 11. 18.
728x90

1, 2, 3이라는 숫자가 출력되어야 하는데 0, 1, 2로 출력되어 fail이 떴던 문제...

 

import java.util.*;
class Solution {
	public static void main(String args[]) throws Exception {
		Scanner sc = new Scanner(System.in);
		int T = sc.nextInt();
		for(int i = 1; i <= T; i++) {
		    int[] n = new int[10];
		    for(int j = 0; j < 10; j++) {
		        n[j] = sc.nextInt();
		    }
		    Arrays.sort(n);
		    System.out.println("#" + i + " " + n[9]);
		}
	}
}