What is the result of compilation and execution of the following code:

import java.util.*;
class Main {
  public static void main(String[] args) {
    List<String> list = Arrays.asList("a", "b", "c", "d", "e");
    NavigableSet<String> set = new HashSet<String>(list);
    
    System.out.println("Less d: " + set.lower("d"));
    System.out.println("Greater b: " + set.higher("b"));
  }
}

Следи за CodeGalaxy

Мобильное приложение Beta

Get it on Google Play
Обратная Связь
Продолжайте изучать
тесты по Java
Cosmo
Зарегистрируйся сейчас
или Подпишись на будущие тесты