2023-01-18 09:30 ~ 18:30 수업진행 ※ 수업내용 ★ 복습 package chapter07; import java.util.Arrays; public class InitEx { //arr이라는 이름을 가지는 int타입의 일차원배열을 생성, 10개의 공간으로 초기화, 클래스변수 static int[] arr = new int[10]; static { // 2. 10의 공간의 임의의 숫자를 배정해서 초기화 단 0에서 100사이의 5의 배수로 지정 for (int i = 0; i < arr.length; i++) { arr[i] = (int)(Math.random()*21)* 5; } } public static void main(String[] args) { new InitEx(); Syst..