관리 메뉴

막내의 막무가내 프로그래밍 & 일상

[알고리즘] 백준 2751 수 정렬하기 2 -정렬- 본문

알고리즘/문자열, 정렬

[알고리즘] 백준 2751 수 정렬하기 2 -정렬-

막무가내막내 2019. 9. 2. 22:49
728x90
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;

public class Main {

    public static void main(String[] args) throws IOException {
        BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
        int N = Integer.parseInt(in.readLine());
        ArrayList<Integer> arrayList = new ArrayList<Integer>(N);
        for(int i=0 ; i<N ; i++){
            arrayList.add(Integer.valueOf(in.readLine()));
        }

        Collections.sort(arrayList);
        for(int i =0; i < arrayList.size(); i++) {
            System.out.println(arrayList.get(i));
        }
    }
}

 

배열말고 리스트로

스캐너말고 버퍼드리더로  해야함

728x90
Comments