✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
CE 3a: Indica la salida del siguiente fragmento de código en java:
int numero = 5;
switch (numero) {
case 5 -> System.out.println("El número es igual a 5");
default -> System.out.println("El número no es igual a 5");
}