자바 데이터 타입 기본 타입 정수 byte1 byte short2 byte int4 byte long8 byte char2 byte 부동 소수점 float4 byte double8 byte 불리언 boolean정해져 있지 않음 참조 타입 배열 타입 char c[]; char[] c; int i[]; int[] i; loing l[]; login[] l; c = new char[10];// c[0] ~ c[9], 2 byte * 10 i = new ing[10];// i[0] ~ i[9], 4 byte * 10 l = new long[10];// l[0] ~ l[9], 8 byte * 10 calss Ex3_1 { public static void main( String args[] ){ int i_arr..