int,float,double 형 변수 : 파란색 char,string,list 형 변수 : 빨간색 그 외 변수 : 볼드체 색깔있는건 변수라고 생각하면됨 1. hashmap 선언 HashMap hashmap_temp = new HashMap(); ※안의 형태는 자유 2. hashmap 에 값 input hashmap_temp.put(key, value); 3. key값으로 hashmap 에서 value 가져오기 hashmap_temp.get(key); 4. key값이 없으면 defualt 값을 가져온다 hashmap_temp.getOrDefault(key,default);