Java-이름 출력
public static void main(String[] args) { String[] name = new String[] {"윤아","태연","유리","태연","제시카","티파니","태연","서현","수영", "효연","써니","제시카","지연","은정","보람","윤아","지연"}; 1. 중복된 이름을 제거 후 출력하세요 //배열을 Hashset으로 변환 HashSet hashSet = new HashSet(Arrays.asList(name)); //HashSet을 배열로 변환 String[] Result = hashSet.toArray(new String[0]); //중복된 이름을 제거 후 출력 System.out.println(Arrays.toString(Result)); 2. 중복된 이름 제거..
2021. 12. 14.