2020-2021 프로그래밍 문제 모음
https://ss-o.tistory.com/149* 위 게시글을 바탕으로 코드 정리를 하였습니다.Java1. 배열 결과 입력하시오.public class Test { static int nSize = 4; public static void main(String[] args){ int[] arr = new int[nSize]; makeArray(arr); for(int i = 0; i답안더보기0 1 2 3 2. 자바 객체 생성( ) 채우기 (2020년 2회)class Parent { void show(){ System.out.println("Parent"); }}class Child extends Parent { void s..