Não me preocupei em deixar bonito ,apenas em fazer funcionar.
import java.util.Random;
import java.util.Scanner;
public class Jogo {
public static void main(String[] args) {
int numeroSecreto = new Random().nextInt(10);
int numeroTentativas = 0;
Scanner respostas = new Scanner(System.in);
System.out.println("Bem vindo ao jogo de Advinhação ");
while (numeroTentativas < 5) {
System.out.println("Digite um número: ");
int chutes = respostas.nextInt();
numeroTentativas ++;
if (chutes == numeroSecreto) {
System.out.println("Você acertou");
break;
} if (chutes < numeroSecreto) {
System.out.println("O número é maior");
} if (chutes > numeroSecreto) {
System.out.println("O número é menor");
}
}
System.out.println("Foram feitas "+numeroTentativas+" tentativas");
}
}