정답
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 t=1; t<=T; t++)
{
int N = sc.nextInt();
int num[] = new int[N];
for(int i=0; i<N; i++)
{
num[i] = sc.nextInt();
}
Arrays.sort(num); //오름차순 정렬
System.out.printf("#%d ",t);
for(int n : num)
{
System.out.print(n+" ");
}
System.out.println();
}
}
}
'Java > SWEA' 카테고리의 다른 글
[JAVA] SWEA 1959. 두개의 숫자열 (0) | 2024.05.05 |
---|---|
[JAVA] SWEA 1961. 숫자 배열 회전 (0) | 2024.05.05 |
[JAVA] SEWA 1970. 쉬운 거스름돈 (0) | 2024.05.05 |
[JAVA] SWEA 1976. 시각 덧셈 (0) | 2024.05.04 |
[JAVA] SEWA 1979. 어디에 단어가 들어갈 수 있을까 (0) | 2024.05.04 |