https://frhyme.github.io/java/java_array01_array_size_by_var/

class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        // 사용자가 원하는 Array의 크기를 직접 입력하고 
        int arrSize = scanner.nextInt();
        // 그만큼 변수 공간을 확보해줌.
        char[] b = new char[arrSize];
        // 그만큼 사용자로부터 
        for (int i=0; i)
        // End of the code
    }
}