import java.util.Random; import java.util.Scanner;
//TIP To Run code, press or // click the icon in the gutter. public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int numero = 0; int numeroAleatorio;
numeroAleatorio = new Random().nextInt(100);
//System.out.println("El número Aleatorio es: "+ numeroAleatorio);
for (int i = 1; i <= 100; i++) {
System.out.print("Ingrese el numero: ");
numero = sc.nextInt();
if (numero == numeroAleatorio) {
System.out.println("¡Genial acertaste!, solo te tomo " + i + " intentos");
break;
} else {
if (i < 5) {
System.out.println("Te quedan " + (5-i) + " intentos");
if (numero > numeroAleatorio) {
System.out.println("El número es menor");
} else {
System.out.println("El número es mayor");
}
} else {
System.out.println("¡Lastima! se te acabaron los intentos");
break;
}
}
}
}
}