import java.util.Random; import java.util.Scanner;
public class Adivinacion { public static void main(String[] args) { Scanner teclado = new Scanner(System.in); int numeroSecreto = new Random().nextInt(100);
// System.out.println(numeroSecreto); for (int i = 0; i < 5; i++) { System.out.println("Intento No. " + (i + 1) + ". Ingrese el número secreto: "); int numeroIngresado = teclado.nextInt(); if (numeroIngresado < numeroSecreto) { System.out.printf("Número secreto es mayor. "); } else if (numeroIngresado > numeroSecreto) { System.out.printf("Número secreto es menor. "); } else { System.out.println("Número secreto encontrado."); i = 5; } } System.out.println("El número secreto es: " + numeroSecreto); } }