import java.util.Random; import java.util.Scanner;
public class JuegoRandom { public static void main(String[] args) {
Scanner teclado = new Scanner(System.in);
int numeroSecreto = new Random().nextInt(100);
int intentos = 0;
int num = 0;
for (int i = 0; i < 5; i++) {
System.out.println("Ingrese un numero");
num = teclado.nextInt();
intentos++;
if (num > numeroSecreto) {
System.out.println("El numero secreto es menor, numero de intentos restantes es: " + (5-intentos));
} else if (num < numeroSecreto) {
System.out.println("El numero secreto es mayor, numero de intentos restantes es: " + (5-intentos));
} else {
break;
}
}
if (num == numeroSecreto) {
System.out.println("Lo lograste en "+ intentos + " intentos.");
} else {
System.out.println("Perdiste, el numero secreto era: " + numeroSecreto );
}
}
}