import java.util.Random;
import java.util.Scanner;
public class juegoAdivinar {
public static void main(String[] args) {
int numeroSecreto = new Random().nextInt(100);
int contador = 1, intentos = 5;
int numeroJugador;
Scanner Lector = new Scanner(System.in);
System.out.println("¡ADIVINA EL NÚMERO SECRETO!");
//System.out.println(numeroSecreto);
System.out.println("¿Cuál es el número");
while (contador <= intentos) {
numeroJugador = Lector.nextInt();
if (numeroJugador == numeroSecreto) {
System.out.println(String.format("¡CORRECTO!. Adivinaste el %d, en %d intentos", numeroSecreto, contador));
break;
} else {
System.out.println(String.format("NO ES %d", numeroJugador));
if (numeroJugador < numeroSecreto) {
System.out.println("El número secreto es mayor");
}
if (numeroJugador > numeroSecreto) {
System.out.println("El número secreto es menor");
}
}
contador++;
}
System.out.println(String.format("FIN DEL JUEGO. El número secreto es %d", numeroSecreto));
}
}