Каков результат следующего кода?
int number = 90;
switch (number) {
case 50 -> System.out.println("50");
case 50 -> System.out.println("50");
case 140 -> System.out.println("140");
default -> System.out.println("default");
}
Please log in or register to have a possibility to add comment.