publicstaticvoidmain(String[] args){ Set<Integer> squares = new HashSet<>(); Set<Integer> cubes = new HashSet<>();
for (int i = 1; i <= 100; i++) { squares.add(i * i); cubes.add(i * i * i); }
System.out.println(squares.size() + ", " + cubes.size()); //100, 100 Set<Integer> union = new HashSet<>(squares); union.addAll(cubes); System.out.println(union.size()); //196
Set<Integer> intersection = new HashSet<>(squares); intersection.retainAll(cubes); System.out.println(intersection.size()); // 4
for (int i : intersection) { System.out.println(i + " is the square of " + Math.sqrt(i) + ", and the cube of " + Math.cbrt(i)); } //4096 is the square of 64.0, and the cube of 16.0 //1 is the square of 1.0, and the cube of 1.0 //64 is the square of 8.0, and the cube of 4.0 //729 is the square of 27.0, and the cube of 9.0
Set<String> words = new HashSet<>(); String sentence = "one day in the year of the box"; String[] arrayWords = sentence.split(" "); words.addAll(Arrays.asList(arrayWords));
for (String s : words) { System.out.println(s); } //the //in //year //one //of //box //day
Set<String> nature = new HashSet<>(); Set<String> divine = new HashSet<>();