1. 데이터 유형 (Data Type) 자바는 데이터 유형에 엄격한 편인 언어인 것 같다. 확실히 파이썬에 비해 컴퓨터 중심적이라는 느낌을 강하게 받았다. public class Datatype { public static void main(String[] args) { System.out.println(6); // 6 System.out.println("six"); // six System.out.println("6"); // 6 System.out.println("6"+"6"); // 66 System.out.println("6 + 6"); // 6 + 6 System.out.println(6+6); // 12 System.out.println("12345".length()); // 5 (해당문자열의..