import java.util.Random;
import java.util.Scanner;
public class Testes {
public static void main(String[] args) {
int numeroAleatorio = new Random().nextInt(100);
int tentativas = 5;
int chute;
// System.out.println("Shhh! Este é o número aleatório: " + numeroAleatorio);
Scanner input = new Scanner(System.in);
for (int i = 5; i > 0; i--) {
System.out.println("Chute um número entre 0 e 100: ");
chute = input.nextInt();
tentativas--;
if (chute == numeroAleatorio) {
System.out.println("Acertou!! O número aleatório é " + numeroAleatorio);
break;
}else if (chute < numeroAleatorio) {
System.out.println("O número aleatório é maior. Tentativas restantes: " + tentativas);
}else if(chute > numeroAleatorio){
System.out.println("O número aleatório é menor. Tentativas restantes: " + tentativas);
}
if(0 == tentativas){
System.out.println("Infelizmente, você excedeu o número de tentativas :(. O número aleatório era: " + numeroAleatorio);
}
}
}
}