JAVA/오류고민

[백준] 2750번 수 정렬하기

(งᐛ)ว 2023. 11. 6. 23:54
728x90

 

 

오름차순 정렬하기

Collections의 sort 메서드를 사용하자.

 

[JAVA] 컬렉션 프레임워크 _ 반복자(Iterator), 정렬

반복자(Iterator) : 컬렉션의 요소를 순회하면서 하나씩 추출하는데 사용한다. 때문에 컬렉션을 위해 존재하는 인터페이스라고 할 수 있다. 반복자의 메서드 hasNext() : 다음 순회할 데이터의 유무

studywithjw.tistory.com

 

 

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Main {
public static void main(String[] args) {
	
	Scanner sc = new Scanner(System.in);
	int n = sc.nextInt();
	
	ArrayList<Integer> list = new ArrayList<>();
	for(int i = 0; i<n; i++) {
		int num = sc.nextInt();
		list.add(num);
	}

	Collections.sort(list);
	
	for(int i = 0; i<list.size(); i++) {
		System.out.print(list.get(i)+"\n");
	}
}
}

 

728x90